How to add custom action for Publishing Tab on Pages?

I am able to add a custom action for libraries tab on document library , but i am unable to add it on Publishing tab on Pages.
Below is the code , what i am trying.
<?xml version="1.0" encoding="utf-8"?>
<Elements xmlns="http://schemas.microsoft.com/sharepoint/">
<CustomAction
Id="Ribbon.PublishTab.Publishing.CheckLinkedPageItems"
Location="CommandUI.Ribbon"
RegistrationType="List"
RegistrationId="850"
Sequence="40"
Title="Move Documents">
<CommandUIExtension>
<CommandUIDefinitions>
<CommandUIDefinition Location="Ribbon.PublishTab.Publishing.Controls._children">
<Button
Id="Ribbon.PublishTab.Publishing.CheckLinkedPageItemsButton"
Alt="Check Linked Page Assets"
Sequence="40"
Command="CheckLinkedPageItems"
Image32by32="/_layouts/images/centraladmin_systemsettings_email_32x32.png"
LabelText="Check Assets"
TemplateAlias="o1"
ToolTipTitle="Check Linked Page Assets"
ToolTipDescription="Checks each image, document and page linked to from this page and verified if the asset is both working (not a broken link) and published. You may also use that page to publish all unpublished assets at once."
/>
</CommandUIDefinition>
</CommandUIDefinitions>
<CommandUIHandlers>
<CommandUIHandler Command="CheckLinkedPageItems" CommandAction="javascript:alert('button clicked!);" />
</CommandUIHandlers>
</CommandUIExtension>
</CustomAction>
</Elements>
any thoughts?

Hi,
Check the secquence number . I don't see any issue in your code. Try with different sequence numbers.
Did you find this Helpful? Please Mark it So! Thank you. Sachin Kumar

Similar Messages

  • How to add custom action group in list settings page?

    I want to add one custom action in my custom group in list settings page. I have done following for that
    <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
    <CustomActionGroup
    Id="LibrarySettings.MyGroup"
    Title ="My Group"
    Sequence="1000"
    Location="Microsoft.SharePoint.ListEdit">
    </CustomActionGroup>
    <CustomAction Id="Custom.Configuration.ListCustomSettings"
    GroupId="LibrarySettings.MyGroup"
    Location="Microsoft.SharePoint.ListEdit"
    RequireSiteAdministrator="FALSE"
    Sequence="100"
    Title="Library Admins">
    <UrlAction Url="_layouts/15/LibrarySettings.aspx?List={ListId}" />
    </CustomAction>
    </Elements>
    But custom group is not created in list settings
    Any idea what I am missing here?

    Hi,
    Per my understanding, you might want to add a custom action group into the list settings page.
    In the same way, we can add custom group into “Site Settings” page(C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\TEMPLATE\LAYOUTS\settings.aspx) by specifying
    the Location attribute to "Microsoft.SharePoint.SiteSettings".
    However, in the “List Settings” page(C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\TEMPLATE\LAYOUTS\listedit.aspx), the three groups “General Settings”,
    “Permissions and Management” and “Communications” are hardcoded there which occupy all the space, it is by design.
    As a workaround, you can modify the HTML source code of the “listedit.aspx” to generate a custom group there manually.
    Thanks
    Patrick Liang
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • How to add custom action in info view

    <p>We want to add link to each report which redirects user to our page.  </p><p> </p><p>So far we have found: </p><p>On InfoView page, there is listing of info objects(reports, hyperlink, programs) - listing.aspx.<br /></p><p>Actions for each object is defined in object AppActionBean. <br />(actionBeans = Utilities.getActionBeans(config, MainIdentity.EnterpriseSession, MainIdentity.InfoStore, realObj))</p><p>Based on action bean collection, page generates links with action appropriate for this kind of plugin. Especially destination url is genereated using AppAction.Path.</p><p>Unfortunatelly AppAction construtcor is <em>internal</em>, so we cannot add our action this way. </p><p> Is it possible to add custom action, to display hyperlink, which redirects user to our page with report ID as url parameter?</p><p> </p>

    In CE10 we were able to add a new link by editing the xml files.  I assume it would work the same in XI, the xml files are located here ...\Web Content\Enterprise115\appplugins\webdesktop\Plugins\

  • How to add new validation for the iProcurement web page?

    Hi,
    I am very new to OA Framework. Can you experts give me some guidance on how to proceed with the following customization?
    My requirement is in iprocurement when you open a new cart and check out on "ICX_POR_SHOPPING_CART" there is a Project Field and reference to Charge account. If the users go to charge account (ICX_POR_CHECKOUT_SUMMARY) and enter the segment values ( which includes project segment) and enters a value in project segment other than '000000' with out entering the Project Field on "ICX_POR_SHOPPING_CART" the page should give error.
    Please give me some suggestions on how to proceed.
    Thanks
    Vish

    I need the client side validation. By saying server side validation if you mean writing a triger on tables to validate then I am thinking to take that option as last resort.
    Can you please tell me what is PPR ( Is it personalization?) stands for.? In my case the Charge Account is DFF.
    Can you direct me to any documentation on how to add custom javascript to achieve my objective?.
    Thanks for your Help.
    Regards

  • How to add custom actions to the Settings page for a Document Library?

    I want to add a custom action under General Settings on the Document Library Settings page (listedit.aspx). So I added a new SharePoint 2010 "Empty Element", and put this code in the Elements.xml file:
    <?xml version="1.0" encoding="utf-8"?>
    <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
    <CustomAction
    Id="MyClassName"
    Sequence="999"
    GroupId="GeneralSettings"
    Location="Microsoft.SharePoint.ListEdit.DocumentLibrary"
    Title="My Link"
    Description="My description here"
    Rights="ManageWeb">
    <UrlAction
    Url="~sitecollection/_layouts/MyProject/MyPage.aspx"/>
    </CustomAction>
    </Elements>
    I found the GroupId and Location here: http://msdn.microsoft.com/en-us/library/bb802730.aspx but I am starting to wonder if this documentation is for MOSS2007 rather that SP2010
    as it says.
    What am I missing?
    Any help or hint would be greatly appreciated!

    Hi Henrik,
    Can we add above custom action in our custom group like General Settings?
    I have tried for that but it is not working.
    I have tried as follows
    <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
    <CustomActionGroup
    Id="LibrarySettings.MyGroup"
    Title ="My Group"
    Sequence="1000"
    Location="Microsoft.SharePoint.ListEdit">
    </CustomActionGroup>
    <CustomAction Id="Custom.Configuration.ListCustomSettings"
    GroupId="LibrarySettings.MyGroup"
    Location="Microsoft.SharePoint.ListEdit"
    RequireSiteAdministrator="FALSE"
    Sequence="100"
    Title="Library Admins">
    <UrlAction Url="_layouts/15/LibrarySettings.aspx?List={ListId}" />
    </CustomAction>
    </Elements>
    But custom group is not created in list settings
    Any idea what I am missing here?

  • How to add custom field in Documents Tab of PO Header ?

    Dear SRM Friends,
      This is a challenging task as an ABAPer to confront to..
      We are in the midst of a requirement where we have to add a custom field in the PO Header. But the requirement is to add the field in Documents Tab in PO Header Data as found in the following path of SRM Webpage  :
    Operational Purchaser > Purchase Orders > Process Purchase Order > Select a PO > Header Data > Documents.
      As guided by "Note 672960 - User-defined fields 2" , on executing all the steps of the note the field is getting added, but in the Basic Data Tab of the PO. But this doesnt meet the client requirement.
      Anybody having some solution to this, shall be greatly awarded.
    Thanks in advance,
    Vikas.

    Hi Vikas,
    You can define a Text ID in Header data with F4 help. But the list of values will be fixed, but configurable. This will exactly solve your problem. This will be quite simple and straight forward solution with no custom developments.
    Please Navigate to
    SAP Implementation Guide -> Supplier Relationship Management -> SRM Server
    -> Cross-Application Basic Settings -> Text Schema
    1. Define Text Types
    Select BBP_PD and double click text id. Add a new text id here.
    2. Define Text Schema
    Select PO and add the newly created text id and set required parameters.
    3. Define Fixed Values for Texts
    Select your PO transaction type and maintain the required values for F4 help / drop down.
    Hope this would solve your problem.
    Regards
    Kathirvel

  • How to add custom button to Insert tab?

    Hello!
    I want to add my own button to the Insert tab. This is the
    tab where there are buttons like h1, h2, ul, ol etc.
    I often need the code tag, but this tag is not avaible in the
    Insert tab. So how to add a custom?

    Any help?

  • How to display custom names for attributes in JSP pages

    I would like to use custom names for my attributes in Struts JSP table headers.
    For example, if the database table named "Country" has a column CNT_ID and BC4J wizard mapped it into an Entity Object's attribute "CntId" I would like to display it as "Country ID" in my JSP table header.
    Now, I suppose the place to try this is probably in DataEditComponent.jsp, DataQueryComponent.jsp etc., and probably has smthg to do with jbo:AttributeIterate, but I still can't figure how to achieve this...
    I use JDev 9.0.3

    Kresimir,
    It's not clear from your posting whether you've worked out how to do what you want with control hints, so just in case, here's how:
    - In the navigator, select your entity object or your view object
    - In the structure pane, double-click the attribute you want to edit (CntId)
    - In the attribute editor, select the control hints page
    - In the Label Text field, type the text you want to use for your label (Country). Click OK.
    Hope this helps
    Blaise

  • Office 2013 add-in - How to add custom button in existing tab/group at home and the same at individual message level?

    Hello Everyone,
    Currently, I'm developing an outlook add-in and would like to setup a custom ribbon button at one of the existing tabs at home screen and at message level too, when
    it is opened from home screen.
    Following are the helpful screen prints.
    Any help would be much appreciated.
    Thanks, <b>Ankit Shah</b> <hr> Inkey Solutions, India. <hr> Microsoft Certified Business Management Solutions Professionals <hr> http://ankit.inkeysolutions.com

    Hello Ankit,
    All you need is to specify the IdMso value of the built-tab where you want to place your controls. See
    How to: Customize a Built-in Tab for more information (TabMail and TabReadMessage).
    You can find the list of built-in controls in the following documents:
    Office 2010 Help Files: Office Fluent User Interface Control Identifiers
    Office 2013 Help Files: Office Fluent User Interface Control Identifiers
    The Fluent UI is described in depth in the following series of articles in MSDN:
    Customizing the 2007 Office Fluent Ribbon for Developers (Part 1 of 3)
    Customizing the 2007 Office Fluent Ribbon for Developers (Part 2 of 3)
    Customizing the 2007 Office Fluent Ribbon for Developers (Part 3 of 3)

  • How to add customized fields for free search in PA30

    Hi,guys
       I have created some customized infotype. and I want to add the field of that infotype into free search.
       How do I do that?
       Please help
    Thank you in advance

    Hi Luke,
    I am getting follwoing error in cds file 1906. 05 Oct 2011 09:46:58 ERROR com.nakisa.Logger - com.nakisa.framework.data.commandProcessor.impl.OracleCommandProcessor : getDataTables : Problem executing query. Data Element Name: SAPOrgUnitDataElement.
    This error is only coming in Quality & not in dev. In Dev, It is showing Org Structure for a scenario but in Quality, it is showing a blank screen & giving this error in cds log file.
    I have copied SAPOrgUnitDataElement.xml into SAPOrgUnitDataElement_copy.xml & then used standard SAPOrgUnitCostCenterInheDataElement data element to create a linked data element called SAPOrgUnitDataElement (using SAPOrgUnitDataElement_copy & SAPOrgUnitCostCenterInheDataElement).
    All the fields in SAPOrgUnitCostCenterInheDataElement got added in source Organization Structure feilds & I have also added cost center name field in view but still it is not showing in scenario Org chart in dev. Because of data issues, I thought to test it on Quality but there I am even not able to see Org chart for a scenario & it is giving above said error in cds log file.
    Please help!
    Thanks,
    Prashant

  • How to add custom Search for to Context Menu

    I'm looking to migrate from IE8 to FF3.6 but dearly miss the following scenario: Highlight a text the right click on it and chose from different search providers ie amazon, ebay, google.
    For the moment, I only have Search Google for and it doesn't work in forms.
    Appreciate any help,
    Josh

    May an add-on? Look at some of these:
    https://addons.mozilla.org/en-US/firefox/search/?q=context+search&cat=all&lver=any&pid=1&sort=&pp=20&lup=&advanced=
    <u>'''''Other Issues'''''</u>: ~~red:You have installed plug-ins with known security issues. You should update them immediately.~~
    <u>'''You'''</u> ~~red:<u>'''MAY'''</u>~~ <u>'''need to Update Adobe Reader for Firefox (aka Adobe PDF Plug-In For Firefox)'''</u>: your ver. N/A; current ver. 9.3.3 (important security update release 06-29-2010; see: http://www.adobe.com/support/security/bulletins/apsb10-15.html)
    ~~red:Check your version here~~: http://www.mozilla.com/en-US/plugincheck/
    See: http://support.mozilla.com/en-US/kb/Using+the+Adobe+Reader+plugin+with+Firefox#Installing_and_updating_Adobe_Reader
    ''<u>You may be able to update from the Adobe Reader installed on your system</u>'' instead of going to the Adobe site and downloading. Open the Adobe Reader installed on your system (''in Windows, Start > Program Files, find and click Adobe Reader to open''), click Help, click Check for Updates.
    ''<u>If you go to the Adobe site to download the current Adobe Reader:</u>''
    -'''<u>use Firefox to download</u>''' and <u>'''SAVE to your hard drive'''</u> (save to Desktop for easy access)
    ~~red:-See the images at the bottom left of this post to see the steps to take on the Adobe site~~
    -exit Firefox (File > Exit)
    -In Windows: check to see that Firefox is completely closed (''Ctrl+Alt+Del, choose Task Manager, click Processes tab, if "firefox.exe" is on the list, right-click "firefox.exe" and choose End process, close the Task Manager window'')
    -double-click on the Adobe Reader installer you just downloaded to install/update Adobe Reader
    *<u>'''NOTE: On Vista and Windows 7'''</u> you may need to run the plugin installer as Administrator by starting the installer via the right-click context menu if you do not get an UAC prompt to ask for permission to continue (i.e nothing seems to happen). See this: http://vistasupport.mvps.org/run_as_administrator.htm
    *'''<u>NOTE for IE:</u>''' Firefox and most other browsers use a Plugin. IE uses an ActiveX version. To install/update the IE ActiveX version, same instructions as above, except use IE to download the ActiveX installer. See: [[ActiveX]]
    *Also see: http://kb.mozillazine.org/Adobe_Reader ~~red:'''''AND'''''~~ [[How do I edit options to add Adobe to the list of allowed sites]]

  • How to add custom line for today's date

    Hi,
    I want to add one vertical line for today's date on my line chart.
    Is it possible to draw custom line dynamically in line chart.
    Thanks in advance
    Madhuri

    I think you will probably need CRChart by ThreeD Graphics (www.threedgraphics.com).  AFAIK, it's written by the guys who supply the charting module to Crystal, so integrates 100%, even if it's a bit fiddly.
    It's a bit pricey (more than CR!), but if you need that functionality, it's about your only option. I've bought it do add a 'your average' linesymbol and 'everyone's average' linesymbol to a chart.
    Essentially, it uses macros to plot user defined lines, box fills, shapes etc onto your chart.
    You put something like this into the text fields of the chart:
    @user_line 0,0,3,100 = draw a line from the 0,0 point to the 3rd group, 50th y-value.
    You can use variable to define these points, so if you have a chart in a group, it'll display a different line position for each group.

  • How to add Custom Image for the Workset Map Pictogram property

    Hello Everybody,
                     Can anyone suggest where should i put a custom image so that i can select it in the Workset Map Pictogram Property of an Iview. I have already uploaded a gif image in root->etc->public->mimes->images->pictograms in KM but still i am not able to see the uploaded image in Iview property. Looking forward for a quick solution.
    Thanks in advance,
    Regards,
    Sarabjeet Singh.

    Hello Nicolas,
    just stumbled accross the topic. Well, if the portal service is
    ".../j2ee/cluster/server0/apps/sap. com/irj/servlet_jsp/irj/root/portalapps/com.sap.portal.navigation.mimeservice" as discussed above.
    I have found the .gifs inside this par file of my NW7.0 Portal:
    \j2ee\cluster\server0\apps\sap.com\irj\servlet_jsp\irj\root\WEB-INF\deployment\pcd\com.sap.portal.navigation.mimeservice.par.bak
    Hope this is still interesting for someone.
    Regs
    Ulf

  • How to add custom actions to finder toolbar?

    If I have some Automator actions saved, can I add them as a dropdown menu to my Finder toolbar?

    Finder plugins typically go into the contextual menu: http://junecloud.com/journal/mac/installing-an-automator-action.html
    See Finder Help on:
    Customize the Finder toolbar
    OS X user-centric questions are best put to the Mac OS & System Software - this is the Developer forum

  • How to add custom hotkey for adding specified component for specified parsys

    For example: I clicked anywhere on the page and press alt+shift+g.
    The result:specified component added on concrete parsys

    The usual way for adding components is by dragging them from the sidekick onto the page. You could certainly write something like this but I don't think it would be easy.

Maybe you are looking for

  • Error message whentrying to connect or synch to 8310

    I have an 8310 with v 4.2.2.170 firmware.  I am using the latest desktop v. 4.6.0.12(may 22 2008).  I have been synching with my Outlook calendar and contacts on my Vista notebook without any problems until today.  When I try to connect I get a messa

  • Looking for some more experience...

    Hi, I've had a interest in video for some time now and am looking for more opportunities to learn the craft than I can get from the various books and tutorial materials. I have shot some local event video but I work full time and going out and gettin

  • To_char doesn't work

    i have the following table sql > desc adm_periodo Name Null? Type COD_PERIODO NOT NULL VARCHAR2(2) FEC_PERIODO NOT NULL DATE sql > select * from adm_periodo COD_PERIODO FEC_PERIODO 01 01-JAN-01 but when i use to_char , it doesn't work sql> select to_

  • My Early 2008 iMac freeze with no apparent reason

    I have an Early 2008 iMac (2.66GHz Core 2 Duo with 4GB RAM). Since installing Lion, sometimes the computer freezes without apparent reason. The only thing I'm sure is that this is NOT the same as the Quicktime video problem – I wasn't watching a Quic

  • Playbook will not boot - solid red LED for 10s

    My Playbook went dead last week.  Put it on the wall charger for many hours and the thing will not boot.  Now, all I get when I plug it in to the wall charger, or computer USB cable is the LED lights up red for about 10 seconds, then nothing. I can't