Manager Actions Menu SSHR

Hello,
I have created a mock of the seeded "manager actions" menu with most of the same functions but when I attempt to use the function in my Manager self service responsibility none of the actions available are present?  I have changed the profile "HR:manager actions" menu to use my custom manager actions menu no functions show up. Is there a reason for this?
What am I missing? I am currently using 11i.

Dear,
   Use 'Functional Administrator' responsibility. Navigate to Core Service > Menus. On this screen search for Manager Self Service. You will get the menu here. Click on Duplicate. Create a duplicate menu. Rename it with desired name. Once saved you can search for the same menu in System Administrator responsibility > Application > Menu. Just delete the prompt for functions that you don't need. Keep other as it is. Doing so, you will get all the seeded functionality in Manager Self Service.
   We should never copy paste name of function and menus. We should duplicate the seeded one.
"Mark as Correct or Helpful if it solves your issue"
Regards,
Kathan Bhatt

Similar Messages

  • Regarding Creation of Action Menu in Organisation Management

    Dear Folks,
    Wether we can create our own action menu under organisation management if yes, can you pls help me out how to create those menu for Organisation management.
    Regards
    Arun

    Hi Arun,
    SPRO-> Pers Mngmt -> Org. Mngmt -> Basic Settings -> Maintain Personnel Actions.
    Regards,
    Dilek

  • Can't click the action menu in a configuration view

    Hi Everyone,
    I've a problem that I can't click the action menu in a configuration view to display the actions, but can do this if I using the <thtmlb:actionMenu> tag.
    Does anybody know why? I'm using CRM 7.01 and IE9.
    Best regards.
    Li

    Praveen -
    as per the link below:
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/8b/764d3c006f8f0ce10000000a11405a/frameset.htm
    service permissions (in this example the service permission "Layout") are required only when setting a default depiction for all users. I am trying to personalize the folder only for my user id. According to the documentation, I don't need any service permissions, I need only read permission on the folder (which I do have).
    My problem is that when I go to the Details tab for the folder, I don't see any layout profile. Any other ideas?
    and by the way, I do not see the menu item Service Permissions when clicking the Settings menu. I have activated the layout and serviceacl services in the KM Repository Manager for the folder.

  • Customization on Personal Action Menu

    Hi,
    Any guide or pointers to customize "Personal Action" in SSHR-Employee Self Service Responsibility?
    Our Requirement is, Need to add "Personal Action Menu" with our Customized Responsibility?
    We have list of action to be displayed in the page which already linked to a custom Menu( Say CUSTOM_MENU) and set the profile value "HR: Personal Actions Menu" as "CUSTOM_MENU".
    But through the customized menu, I'm not getting any action in the page.
    Please advice.
    Thanks in advance.
    Naresh

    Akshay,
    Edit it the portal skin and add below style (This is will just hide the icon):
    .WCTopNavActions .WCActionsIcon
    display:none;
    if you want to remove completely, then you have to customize the taskflow 'oracle/webcenter/webcenterapp/view/taskflows/navigation/SpacesNavigationTopPanel'.
    More information on customizing Taskflows http://docs.oracle.com/cd/E29542_01/doc.1111/e27603/portadv_custtf.htm#WCPAA12267
    -K

  • PB40 Applicant Actions Menu

    Hi All,
    I would like to know that besides configuring Menu 40 - Applicant Actions to display actions according to defined user groups, is it possible to create a new menu ie, Menu 41 instead to display the new actions for different users. I am able to create Menu 41, but in SPRO, it doesn't seem possible to redefine the Action Menu to it.
    Thanks.

    Hi,
    Try this
    SPRO -> Personnel Management -> Recruitment -> Dialog Controls -> Change Action Menu
    You can customize the action menu here, if your customized actions are not being displayed in PB40.
    you can also create different action menus here to be assigned to different users through SU01.
    Hope it helps !!
    Regards,
    Bhavna

  • Show 2 level hierarchy in Managed Navigation menu(Current Navigation) in SharePoint 2013

    We have enabled Managed Navigation in SharePoint 2013 Publishing Site. Now when a user browses a page we want to show the current page siblings are its parent links in the Managed Navigation. Right now its showing only current page siblings in managed navigation.
    Is there any way to show current page parent links in Managed Navigation menu?
    For example I have a term set enabled for managed navigation with following terms:
    Level1
        Level 1.1
            Level 1.1.1
            Level 1.1.2
            Level 1.1.3
    Level 2
        Level 2.1
            Level 2.1.1
    Level 3
        Level 3.1
    Level 4
        Level 4.1 
    Now if a user is on page Level1.1.1 then Current Navigation should show following hierarchy in using Managed Navigation :
    Level 1.1
        Level 1.1.1 -> This node will be shown as selected
        Level 1.1.2
        Level 1.1.3
    Level 2.1
    Level 3.1
    Level 4.1
    Is the above behaviour possible by doing any out of box configuration or using SharePoint designer?
    Thanks,
    Anna Jhaveri

    Ha i was given the same task by my client but they wanted it to be done in client side rather than creating new user control and inheriting from actual control.
    i used Jquery and css to achieve staticlevel 3+  left navigation in sharepoint 2013. first of all let me explain the structure i had created.
    HR department
     -->Level 1
    ---->Level 1.1
    ------>Level 1.1.1
    ------>Level 1.1.2
    -->Level 1.2
     (same as above structure)
    all i did was setting up the staticlevel ="2" and dynamiclevel="3"
    so this would make left navigation with two level  and remaining of its sub sites as flyouts
    Part-1:
    so i used Js to convert all the flyout(dynamic class ) to static $(function(){  
    $("ul.dynamic").removeClass('dynamic').addClass('static');$(".dynamic").removeClass('dynamic').addClass('static');  $(".static").removeClass('dynamic-children'); $("#zz12_RootAspMenu > li:nth-child(n) > ul").removeClass('dynamic-children');
    $("leftnavigation ID"> li:nth-child(n) > ul > li.static > ul").removeClass('dynamic-children');              $("leftnavigation ID" > li:nth-child(n) > ul > li.static > ul > li:nth-child(n) > ul").removeClass('dynamic-children')
    $(".ms-navedit-flyoutArrow").removeClass('dynamic-children').removeClass('ms-navedit-flyoutArrow');
    by using this script all the dynamic classes get convert to static. after getting rid of classes call "dynamic" and "dynamic-children"
    second part :
    now we have convert all the dynamic level to static (just look wise) but functionally  its behaviors is like flyout menu items.so the following js adds the static behavior classes so it just functions like static menu
    $(function()
    var path = window.location.pathname;
    path = path.replace(/\/$/, "");
    path = decodeURIComponent(path)
    $("left nav ID" > li > ul > li.static.selected > ul > li > a").each(function () {
    var href = $(this).attr('href');
    if (path.substring(0, href.length) === href)
    $(this).closest('li').addClass('selected');
    $(this).removeClass('ms-core-listMenu-selected').addClass('selected').addClass('ms-core-listMenu-selected');
    else
    $(this).closest('li').removeClass('selected');
    $(this).removeClass('selected').removeClass('ms-core-listMenu-selected');
    How above code works:
    it  takes the url path of current page and compare it with the all the anchor elements href ,so when it finds the match it would go insert the static level class  like "selected" in the <li> and "ms-core-listMenu-selected" in the <a>
    tag so  they function like static.
    so i have done it for 4 levels so i had to put one more function as shown above to target and read <a> tag href values for 4th level and compare it with current page url.
    i didn't explain in detail in here, i'll be writing up again on this issue on  my blog with screen captures soon.
    Till then you can leave comments and questions.
    Disadvantage :this doest work if you have anything listed other then Subsites(pages,list,libraries) in left navigation.

  • "Type mismatch" error in IE7/8 when using custom Actions Menu Image

    Hi all,
    in APEX 4.2: when using a custom image in the "Actions Menu Image" attribute in an interactive report, I get a "Type mismatch" error in IE7/8 when refreshing the report through PPR (filtering, sorting, paginating etc.). When I leave the "Actions Menu Image" field empty, everything works fine. The error doesn't seem to happen in IE9 (unless using compatibility mode), or in any non-IE browser.
    I've been able to reproduce the issue in an application on apex.oracle.com:
    http://apex.oracle.com/pls/apex/f?p=69347:1
    Some debugging seems to indicate that the following line in widget.interactiveReport.js is the culprit:
    lTemp.parentNode.replaceChild($x('apexir_WORKSHEET'), lTemp);Does anybody know if this is a known issue, or if there is some workaround?
    Thanks,
    Tobias

    Hi,
    Great solution Paul! It cost me a while before I found out the Action Menu Image was causing my interactive reports to stop refreshing in IE10 and not other browsers. Your solution works great, I've implemented it with a few minor adjustments:
    - Put the css in report template (for some reason it didn't work in our own application stylesheet)
    - replace  'url("/c/action_dropdown.gif")' with 'url("&APP_IMAGE_PREFIX./<path_to_image>")'
    - place one dynamic action on page 0: after refresh of '#apexir_DATA_PANEL' , set event scope to "Dynamic".
    - Let the Dynamic action also fire on page load.
    - To make sure the dynamic action only works for pages with an interactive report add condition of type 'Exists' with expression:
    select 1
    from   dual
    where  :APP_PAGE_ID in (select page_id
                                            from   apex_application_page_ir
                                            where  application_id = :APP_ID
    Best regards,
    Vincent Deelen

  • Interactive Report - Add a 'custom' Action Menu Item

    Hi,
    I'm wondering if it is possible to add 'custom' Action menu items to an interactive report?
    I have a situation where I want to use all the richness that an interactive report gives with it's out of the box functionality, then if a download is selected I need to be able to set a 'lock' on the currently selected records set before the records are downloaded.
    I've had a good look around the forum and various other sites and I can't seem to find anything in this area. The nearest I can find is on the OBD tutorials the ability to add a 'Reset' button.
    I know how to create custom download functionality, to which I could add the required record locking functionality and in turn link to a button, but what I don't know how to do is pull out the selection variables from the Interactive Report in order to construct my select query.
    Maybe I'm barking up the wrong tree and there's a better way if so any suggestions would be most welcome.
    Many thanks in advance Peter..
    Edited by: Pete on Jun 30, 2011 4:16 PM
    Edited by: Pete on Jun 30, 2011 4:24 PM
    Edited by: Pete on Jun 30, 2011 4:31 PM

    Hi,
    For your issue, in SharePoint Designer, Click Custom Action->View Ribbon->Create Custom Action.
    Then the extra form will show up in the Ribbon.
    Refer to the following link:
    http://www.abelsolutions.com/totm/creating-a-custom-action-in-2-steps-with-sharepoint-designer/
    Best Regards,
    Lisa Chen
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]

  • Action not displaying in the Action menu.

    Hi All,
                   I have configure one action demotion & added it the Action menu.All the configuration I have done is in similar line with the existing action types.But this action is not displaying the action menu.Can anybody help me to resolve the issue.
    Thanks,
    Snita

    My user group is 60
    I have configured like this-
    User group dependency on menus-
    Menu   Text         User-dep.   Reaction  ref.
    17       Demotion   blank          00
    For infogroup
    User group    Infogroup modfi..  N   operation  Infotype
    00                   Blank            01      COP      0001
    00                   Blank            01      COP      0008
    00                   Blank            01      COP      0014
    00                   Blank            01      COP      0015
    A.Ty N.Action  F Cus. E  Sp.C  Check   P  P..E E..                 IG    U  U
    17    Demotion 0         3                       Check box for All the 4 17    2Check box for U U
    Then I have include this action in action menu.
    But it is still not displaying in the action menu.
    Snita

  • Where is the action menu in Pages?

    Where is the action menu in Pagess?  The "accepting changes" help says its all in the "Action Menu" but nothing is labled as the "action menu"  Where is it?

    Simio,
    I must confess, I didn't research the answer very well before my first response. It turns out that in the current version of the English edition of Pages User Guide, the phrase "Action Menu" appears 20 times. And to think I don't recall ever seeing it before.
    My reading of the guide indicates that the "gear" icon with a disclosure triangle is an Action Menu. They are everywhere, in many contexts besides Tracking, and I always thought of them as the "gear" menu. Dale's graphic gets you close, but his capture isn't quite wide enough to catch the Action Menu icon. It's here:
    And, it looks like this after clicking the disclosure triangle:
    Regards,
    Jerry

  • Can Actions Menu of Interactive Reports work with Custom Authentication?

    My testing is leading my to believe that Actions Menu do not work with Custom Authentication (but only work with APEX Authentication) in APEX 3.1.2? If that's true then is there a work around to this?
    Just to clarify, I've posted/asked this question twice before:
    1) Re: Actions Menu in Interactive Reports does not sort, filter, select cols etc
    2) Interactive Report actions don't work for users (i.e. for non-developers)
    But I've come to believe this is the main problem. I just don't know how to resolve/work around this?
    Thanks for any help.

    I haven't setup a sample because my custom authentication is using LDAP authentication. I'm not sure how I can replicate that on the samples server?
    I'm using LDAP authentication with a Page Sentry function. My further testing reveals that the Page Sentry function is setting the APEX variable user to NULL (ie blank) whenever there's any code in the Page Sentry function box. PL/SQL code as simple as
    BEGIN return TRUE; END;
    in the Page Sentry function box sets the "user" is set to <null>. When the Page sentry function box is left empty (no code specified) it sets the "user" properly after authentication against the specified LDAP directory.
    What all this has to do with Interactive Reports...
    It seems like when the user is NULL it messes-up Interactive Reports that are stored in the flows database. Although it shows the default report properly, but no runtime interactive actions (filtering, sorting, column break, etc.) work.
    Can someone please correct or confirm this?
    Thanks.

  • How can I get rid off "Download" in action menu

    Dear All,
    In interactive report, How can I get rid off "Download" in action menu.
    Thanks In Advance,

    On the reports attributes page, in the Search Bar attributes, uncheck the Download checkbox.
    http://apex.oracle.com/i/doc/bldapp_rpt_int.htm#BABDCABG

  • It says I can drag Pages documents from iMac to iCloud. But nothing shows up. Using latest with all turned on. How do I get Pages up to iCloud? The little wheel like action menu does not appear.

    It says I can drag Pages documents from iMac to iCloud. But nothing shows up.
    Using latest with all turned on. How do I get Pages up to iCloud? The little wheel like action menu does not appear.

    yes is tehre another way
    the directions do not explain anything other than drag
    or use the little action wheel menu

  • Action menu background is clear.

    Hello,
    Someone using one of my applications sent a screenshot of the Actions menu of a Interactive Report. The background of the menu that drops down is clear (no background color) so you can see the report through it. They are using IE.
    Has anyone seen this or have any suggestions on how to make the background white? I can't replicate it in FF or IE.
    The theme is Builder Blue.
    thanks,
    Matt

    Previously reported: +{thread:id=1095764}+.
    No resolution mentioned yet, but switching to another theme may be a possible workaround.

  • Difference in action menu , infotype menu, actions

    can somebody tell me difference in these three with screen shots.
    Kind regards,
    Shruti

    Actions - YOu organisation will have certain events which will be performed during the employees life term in that company, such as Hiring, Transfer, promotion etc. These u will configure in PM--> PA --> Customising procedure --> Actions > setup personnel actions. After u configure actions, you will configure the infotype menu, i.e the infotypes you need to maintain for each actions. For eg: for Hiring you wil definitly need IT00, 01, 02 etc..and these infotypes will be executed in a sequence. So you wil create an infogroup and assign these infogroups to actions. PM> PA --> Customising procedure --> Actions --> Define Infogroups. These infogroups will be define in IGMOD.
    Infotype Menu - This is what you will configure for PA30. For each tabs such as "Basic Employee data", Contract Data, Planning data, you wil decide what infotypes should be visible under it. Path: PM--> PA -->Customising procedure --> Infotype menu
    Action menu - This is the  menu which will get displayed in pa40 screen. The actions you configure for your enterprise wil be displayed here.
    Note: the reference user group no. which you will  maintain for action menu and infotype menu will have to be given in the UGR in User parameter

Maybe you are looking for

  • Best size of procedure cache size?

    here is my dbcc memusage output: DBCC execution completed. If DBCC printed error messages, contact a user with System Administrator (SA) role. Memory Usage:                                    Meg.           2K Blks                Bytes       Configur

  • Installing Exchange on a domain controller?

    We are very small business firm like less than 10 people. I planning to setup new server. Initially I thought install AD, DNS, DHCP, DC and Exchange on same server. Microsoft not recommending all in my server Installing Exchange on a domain controlle

  • Blank images with iPhoto 6 on OS 10.3.9 on iMac G4

    Have installed iPhoto 6 on iMac G4 with OS 10.3.9. The iPhoto Library is (only) on an external (Maxtor) hard drive attached via firewire. Photos are imported automatically into this file. After iPhoto 6 installation, the image files from iPhoto Libra

  • My adobe photoshop cc has been at 98% for 24 hours, help?

    My Adobe Photoshop CC download has been at 98% for 24 Hours, help please

  • Multicell borders???

    I have a document with several hundred rows and I want to have a black 1pt border around 2-3 rows high x 20 columns wide. How can I do this QUICKLY? In Excel I could do one and copy and paste it. I don't have the time to manually do this 100+ times c