SSHR : Release Information

Hi,
If Release Information is performed for Person X and information is released to Person Y, does Person Y receive notification that Person X information is released to you?
Thanks!

When you 'release' information to another manager, that manager does not see the 'released' person in their view of their supervisor hierarchy. As the post above explains, you have to go to My List and query the person back there. From there, you can perform your normal actions on them.
The system should send a notification out to let the manager know that an employee's record has been released to them.
It is acknowledged that this is not the best usability and has to be overcome through training.
If you have any more specific questions on 'Release Information', happy to help if I can.

Similar Messages

  • Release Information in SSHR

    Hi All ,
    Can somebody help me out in undertanding how "Release Information" function works.
    I know that we can supplement the list of people who appear in a security profile by enabling the Release Information function. With this function, users can allow other users (who are outside of the security profile) to access their records. Similarly, managers can use the Release Information to allow a second manager (who is outside of the security profile) to access the records for one of their employees.
    What I did was, for a "PERSON A " I granted Access to "PERSON B" .When I log in Manager's self service for "PERSONB" , I can add "PERSONA" in "My List".This "PERSONB" could have done even if "PERSONA" would have not given him access .
    As per my understanding , if "PERSONA" has granted access to "PERSONB" , then "PERSONA" should appear direcly in "People in My Hierarchy " which is not happeng as of now.
    Can somebody clarify this doubt.
    Regards,

    When you 'release' information to another manager, that manager does not see the 'released' person in their view of their supervisor hierarchy. As the post above explains, you have to go to My List and query the person back there. From there, you can perform your normal actions on them.
    The system should send a notification out to let the manager know that an employee's record has been released to them.
    It is acknowledged that this is not the best usability and has to be overcome through training.
    If you have any more specific questions on 'Release Information', happy to help if I can.

  • When will Creative release information on the next generation X-Fi

    Hi,
    I'm looking into the Creative Zen X-Fi but there's too many negati'ves surrounding it. No .ogg support, no integration of SD and media, and poor implementation of other features are keeping me away. However, do we know when Creative is going to release information on the next-gen X-Fi?

    Interesting look at the card, looks very sparse compared to current gen boards, maybe a sign that the work will in fact be handled by the CPU as Vista seems to be dictating. I guess with multiple cores nowadays, everything will eventually be handled by the CPU, what's next, video software rendering? (think AMD ATI)

  • Peoplesoft Test Framework 8.53.02 Error Retrieving PeopleTools  Release Information

    I am recording test scripts in Peoplesoft Test Framework 8.53.02. On a number of screens I recieve an error stating "Error retrieving PeopleTools Release Information." Has anyone seen this error and knows how to troubleshoot it?
    Thanks for your help.

    I've not seen this specific error yet, but the first thing that comes to mind is to check the webprofile in use and verify that
    Show Connection & Sys Info
    and
    Generate HTML for Testing
    are selected.

  • Release Information Notes

    Hello Experts.
    We are trying to Upgrade our ERP6.0 from Support Pack Stack 15 to Support pack stack 16.
    Our functional team wants to evaluate all the release notes that are affected by the stack upgrade.
    When looking from sap market place, there are thousands of notes. These notes are listed under each node (example : SAPKGPAD16 has 1503 notes and they are all spread out). Is there a way i can download ALL the Release Information Notes in one excel sheet?
    Thanks for your valueable feedback. !

    Hi,
    Your best bet is the service Marketplace with the release notes e.g.:
    RAR 1168120
    CUP 1168508
    SPM 1168121
    Alternatively, have a look at the application homepage (http://<server>:<Port>/index.html) and then select the Webservice Navigator application to see what's available and test them out.
    Cheers, Simon

  • Release information about SEM 6.0?

    Hi
    My company has a BW-SEM installation. We are very keen to upgrade the BW part of it to Netweawer 2004s as soon as it is released, but we have to think also on the SEM 6.0, as they need to be upgraded at the same time (because they are on the same instance).
    Does anybody know where to find updated information about the status of SEM 6.0 ?
    Best regards, and thank you in advance
    Carsten B. Dahl

    Hi Carsten,
    Normally, the SEM release would come after the BI release. This year is the exception, however. As SAP NetWeaver 2004s is being rolled out with the mySAP ERP 2005 ramp-up program, which includes SEM 6.0, that means that BI and SEM are expected to go into unrestricted shipment at the same time. That is at the planned end of ramp-up, at the end of May 2006.
    A good source of information about actual and planned release dates is the product availability matrix in the SAP Service Marketplace at service.sap.com/pam. (Ramp-up information is at the alias /rampup.)
    Regards,
    Katie Beavers
    SAP NetWeaver Product Management

  • SSHR workflow information

    Hi Gurus,
    I have a below requirement. Appreciate if anyone can help.
    Suppose if we do Assignment Change/New Hire/Termination etc functions through SSHR, then initially it stores
    temporary on hr_api_transactions,hr_api_transaction_steps,hr_api_transaction_values till final approver approves it.
    Once it is approved, it triggers API and commits into the system. User need a report to know who initiated,start_date,end_date and who approved etc details. As far i know it stores all these info in Workflow tables until DBAs purge it. Is there anyway we can get these details using Workflow tables. If Yes, can anyone have idea/query to get it.
    Is there any approval history table which stores this information(person_id,transaction_id,start_date,end_date,status etc)?

    try this to start:
    SELECT *
    FROM (SELECT wi.item_type,
    wi.item_key,
    wi.root_activity,
    wav.display_name process_name,
    wav.read_role,
    wav.write_role,
    wav.execute_role,
    wav.begin_date wav_begin_date,
    wav.end_date wav_end_date,
    wi.root_activity_version,
    wi.owner_role,
    wi.parent_item_type,
    wi.parent_item_key,
    wi.parent_context,
    wi.begin_date,
    wi.end_date,
    wi.user_key,
    witv.NAME,
    witv.display_name,
    wf_directory.getroledisplayname
    (wi.owner_role) AS role_name,
    wf_fwkmon.getitemstatus
    (wi.item_type,
    wi.item_key,
    wi.end_date,
    wi.root_activity,
    wi.root_activity_version
    ) AS status_code,
    wf_fwkmon.getroleemailaddress (wi.owner_role) AS role_email,
    DECODE
    ((SELECT COUNT (0)
    FROM wf_items wi2
    WHERE wi.item_type = wi2.parent_item_type
    AND wi.item_key = wi2.parent_item_key),
    0, 'WfMonNoChildren',
    'WfMonChildrenExist'
    ) AS child_switcher
    FROM wf_items wi,
    wf_item_types_vl witv,
    wf_activities_vl wav
    WHERE wi.item_type = witv.NAME
    AND wav.item_type = wi.item_type
    AND wav.NAME = wi.root_activity
    AND wav.VERSION = wi.root_activity_version ) qrslt
    WHERE item_type = :1
    AND begin_date >= TO_DATE ('30-MAY-2010 08:00:00', 'DD-MON-YYYY HH24:MI:SS' )
    ORDER BY item_key,wav_begin_date

  • Is it possible to have iTunes automatically fill the year of release information for songs which were found on iTunes Match?

    Hello all,
    I hope this is the right category for this question.
    I wanted to start a clean song compilation in iTunes, so I erased all tag information from my MP3-files except Title and Artist. However, now I would found it useful to have the information about the year when the song was released also available.
    I was thinking, if iTunes Match recognizes a song, then this information should also be available. Is it possible to download/update the information of a song?
    Regards,
    Michael

    Oops! I hit "Correct Answer" thinking that I could edit my last reply! That wasn't the correct answer, obviously!
    iTunes has replied to me and told me that I cannot download any artwork outside of the USA, so I guess that answers my question, even though it's not what I'd wished to hear. 

  • How to Navigate Directly to Manager SSHR Personal Information

    Hi there,
    Is it possible to navigate directly to an employees personal information either via a function or a url call?
    For example a function to simulate navigating to:
    Manager Self Service -> Personal Information -> Search for EmployeeA and start actions
    Using the function HR_PERINFO_MGR_SS I can navigate to Manager Self Service -> Personal Information but I still have to enter the EmployeeA name which is what I want to avoid. Ideally I would like to pass the personID.
    Does anyone know if this is possible?
    Many thanks,
    Mike

    Thanks for the reply. I tried your suggestion of redirecting to the view activity URL using the code below.
    ControllerContext controllerContext = ControllerContext.getInstance();
    String viewId = "RootFlow1/PageOne";
    String url = controllerContext.getGlobalViewActivityURL(viewId);
    System.out.println(url);
    FacesContext.getCurrentInstance().getExternalContext().redirect(url);
    the sysout prints the URL below
    /TestUIShell-ViewController-context-root/faces/RootFlow1/PageOne?_adf.ctrl-state=qlewpla4_41
    However, I get a 404, saying that it can't find the page. I tried modifying some of the flow settings to get it to work. I set the redirect property on the view to true and the URL Invoke visiblity on the flow to url-invoke-allowed, but I still get a 404. What am I missing?
    To give you more info about our app, we are using an outer page template to define the layout of the app (like the Fusion UIShell) and an inner page template to define the main area where pages will be rendered. Navigation is achieved by putting the main area flow in a dynamic region. When the user clicks a lnk, we swap out the task flow id on the region. Once they are in the region, navigation is normal ADF navigation within just that region.
    I read both of the threads that you referenced, but I don't see anything in there that I can use (maybe I'm missing it). Are there other ways to navigate to a view in a flow that I am missing?
    Thanks!!
    Mike

  • SSHR Extra Information Type - Restricting date entered

    As part of out draft SSHR build, we have created an EIT (and made it available via a function in Self-Service) to capture MOT and Licence Expiry Dates relating to an employee's private vehicle.
    Is it possible to restrict the date entered to prevent users entering a past date i.e. an expired MOT/Licence?
    Many thanks,

    Create user hook for the API hr_person_extra_info_api.
    In the user hook write your code to validate.
    It will raise error in the page.
    Regards,
    Peddi.

  • Extending SSHR Special Information Types validation

    Hi,
    I have a requirement to validate new entry or update on specific type of SIT after clicking Apply button.
    Other than validating values, i also required to set specific attribute value based on user input
    The problem occurs cos I can't find where they put the inputted value in the ViewObject, except from oapagecontext.getParameter("HrKeyFlex1").
    The navigations are Employee Self Service -> Special Information Types -> Click Add on one detail table. when examined, it show values from a Key FlexField (KFF) and (if rendered) Desc FlexField (DFF).
    Based on "About this Page" information, the KFF and DFF stored in SpecialInformationUpdateVO, but there is only a set of Attribute1 to Attribute20 which hold values for DFF, where are field Segment1 to Segment20 which hold values for KFF ??

    Hi,
    thanks for replying,
    I'm afraid I don't understand the solution you gave since I'm still a newbie, only a week ago assigned to learn extending OA Framework.
    I only can find corresponding VO which is
    oracle.apps.per.selfservice.specialinformation.server.SpecialInformationUpdateVO.xml
    oracle.apps.per.selfservice.specialinformation.server.SpecialInformationUpdateVORowImpl.class
    oracle.apps.per.selfservice.specialinformation.server.SpecialInformationUpdateVOImpl.class
    So far I come with a work around to validate each field individually, but this method can't set or change user inputted value
    Step I've done :
    1. extend oracle.apps.per.selfservice.specialinformation.webui.SitUpdateCO controller class to at.oracle.apps.per.selfservice.specialinformation.webui.ATSITUpdateCO
    2. Override processFormRequest method, retrieve values from form request parameter
    String cost_center = (String) oapagecontext.getParameter("HrSitKeyFlex2");
    String nature = (String) oapagecontext.getParameter("HrSitKeyFlex3");
    String activity = (String) oapagecontext.getParameter("HrSitKeyFlex4");
    String item = (String) oapagecontext.getParameter("HrSitKeyFlex1");
    String unit_price = (String) oapagecontext.getParameter("HrSitKeyFlex12");
    make a call to PL/SQL stored procedure to validate these values, if the result is error, then raise an OAException
    3. personalize the page so it will use extended controller
    I need to set Segment7 (HrSitKeyFlex7) which hold total_price
    to HrSitKeyFlex1 * HrSitKeyFlex12
    Could you give further explanation on :
    1. find corresponding (KFF) classes, looking at the SpecialInformationAM, no VO or AM query fields from hr.per_analysis_criteria table
    2. what is VRule KFF bean ? and how to add
    3. Cross Validation Rules to KFF metadata (do you mean TABLE with metadata ?, am i suppose to create a trigger on insert ?)

  • Customizing SSHR "My Information" Pages

    Hi,
    I am trying to customize the My Information Page.
    I want my query to be run after clicking the Salary Tab.
    I have created a View Object XXSalaryDetailsVO.
    Then I have created a region XXSalDetailsRN and in that region I have replicated the XXEmpViewsSalRN.
    I have compiled the Java classes.I have copied the java classes and files in the Server in JAVA_TOP and then I have copied the default EmployeeViewsPG.xml in the MDS.
    I get the following error:
    oracle.apps.fnd.framework.OAException: java.lang.IndexOutOfBoundsException: index:-1 size:6
    at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:888)
    at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(OAPageErrorHandler.java:1064)
    at oracle.apps.fnd.framework.webui.OAPageErrorHandler.processErrors(OAPageErrorHandler.java:1294)
    Please reply.
    Regards,
    Shivanandan Bildikar.
    Email :: [email protected]

    Hi,
    Do you have System Administrator reposnisbility. If yes, just check whether any HR record is tagged with user login or not. System Administrator --> Security --> User --> Search for the user_id/Login you are using to login.--> check HR record is attached or not.
    If this still doesnt work clear the cache through functional administrator responsibility, log-off and login and try again.
    Thanks,
    Avinash

  • Release information on R2 EM

    Can anyone provide some type of feedback of when R2 for other platforms will be available? I seen the response of "SOON", but "SOON" is relative. Are we looking a week(s), month(s), year(s)?
    We are solely a Windows platform and I am being hammered by others to upgrade to 10g, but I can not do that until 10gEMr2 is available for use. It is getting old telling the people I work with that it will be soon. Any bit of information would be helpful.

    Have you seen [this thread|http://forums.oracle.com/forums/thread.jspa?messageID=3241776&#3241776]?

  • Way to Send Purchase order Information to XI after Release?

    Hi All,
    Can anybody suggest me a way how can I send purchase order information to XI immediately after releasing the PO.May be User exit, Idocs,BTE?
    Thanks in advance?
    Anil

    Hi,
    Since you have to send the Release information to XI.
    Best way is to send thru IDOC.
    IDOC Type is :ORDERS05
    Thanks

  • 9/10/2013 - Flash Player 11.8 Release Announcement

    Today we're pleased to announce that the next version of Flash Player is available for immediate download.  This update includes the multiple stability and security fixes for all browsers and platforms:
    Bug fixes
    3601024 - [Safari OS X 10.9] - File Downloads now work
    3611679 - [HTTP Live Streaming] [WebVTT] - Caption colors now render correctly
    3507613 - [Win7 IE10] - A Microsoft update to Internet Explorer corrects the following issue: Mouse movement interferes with Flash Player display updates
    3575123 - [Mac][FullScreen, MouseLock] - Corrects an issue where when the mouse movement values for a given frame were identical to the values of the preceding frame, the values returned would be zero
    3609793 - [Chrome] - Improved Audio Latency path is enabled by default
    3507613 - [Internet Explorer 10] [Win7] - An update to IE10 resulted in an improvement where instantiating an ActiveX Flash Player instance in IE 10 using a Windowless Mode (opaque or transparent) now works
    3597568 - [MacOS 10.9] - Mavericks Developer Preview 3 corrects an issue where Flash Player configuration files were not readable by Flash Player
    3604526 - [IME CCJK] - The IME candidate window position no longer moves to the left when the composition string extends beyond a single line in a textfield
    3583135 - [HTTP Live Streaming] [WebVTT] - Changing the options on a caption no longer erroneously resets that caption's position
    3602519 - [Chrome] [PPAPI] - Video on NYTimes.com now plays correctly
    3609793 - [Chrome] [PPAPI] - Audio latency improvements are enabled by default
    3570724 - [Flash Access] - Ability to specify a shorter timeout for license response
    3580139 - [Chrome] [PPAPI] [Mac] - screen.yahoo.com - video playback stopped after exiting full-screen mode
    3580607 - [Chrome] [PPAPI] - Resolves video jitter after exiting fullscreen mode on an embedded YouTube video
    3572762 - [HTTP Live Streaming] [Web VTT] - A stream with WebVTT captions now plays all of the captions available in a stream
    3572767 - [HTTP Live Streaming] [Web VTT] - Captions are no longer erroneously broken across multiple lines
    3577355 - [HTTP Live Streaming] [Web VTT] - Captions are now displayed when seeking backwards in a video stream
    3577367 - [HTTP Live Streaming] [Web VTT] - Caption customizations are now displayed on the correct frame
    3583137 - [HTTP Live Streaming] [Web VTT] - Captions are now displayed with the correct font weight
    3586532 - [HTTP Live Streaming] [Web VTT] - Ampersand, Less Than and Greater Than cue escape characters are now correctly displayed
    3583922 - [Internet Explorer] - ExternalInterface now works correctly in instances where SWF content was embedded using only the tag.
    3599625 - [Internet Explorer] - Fullscreen Mode now works correctly on https://apps.facebook.com/warcommander
    3582320 - [Win8] [ARM] - Flash video now appears as expected on http://www.orange.fr
    3600931 - [Win8] - Playback Controls are now rendered correctly on http://www.cnn.com/video/
    3590934 - [Win8] [Firefox] - When the Windows display settings are zoomed to 150%, the right-click context menu in Flash Player now works correctly
    717340 - [Mozilla] [Mac] [Dual Monitor] - Fixes an issue where the Cursor disappeared when moving from Full-Screen video in the second display to Firefox/Safari in the primary display.
    Multiple stability and security fixes
    For complete release information please see our release notes.
    Security update details can be found here: Security Bulletin APSB13-21
    Current Flash Player desktop users that have enrolled in either the "Allow Adobe to install updates (recommended)" or "Notify me to install updates" update options will receive an update notification dialog within 7 days from today (please note that Windows users will need to restart their system to receive the notification dialog.)
    If you would like to install the update immediately, please use one of the links below:
    Flash Player 11.7 desktop for Windows XP, Vista and 7: 11.8.800.168
    Flash Player 11.7 desktop for Windows 8: 11.8.800.168
    Please note that both Flash Player for Google Chrome and Microsoft Internet Explorer for Windows 8 are updated using a different mechanism.  Flash Player for Google Chrome updates will occur during regular Chrome updates.  Flash Player updates for Internet Explorer on Windows 8 will be provided by Microsoft though the Windows automatic update feature.
    Flash Player 11.7 desktop for Mac: 11.8.800.168
    Flash Player 11.2 desktop for Linux: 11.2.202.310
    Flash Player 11.1 Mobile for Android 3.x: 11.1.111.73
    Flash Player 11.1 Mobile for Android 4.0.x: 11.1.115.81
    On July 9th, 2013 we changed the version of our "extended support release" from Flash Player 10.3 to Flash Player 11.7 for Mac and Windows. To continue to stay current with all available security updates you will need to install the 11.7 extended support release or update to the most recent available release (11.8, etc.). For full details, please see this blog post:
    Extended Support Release Updated to Flash Player 11.7
    Flash Player 11.7 desktop for Windows, Macintosh and Linux: 11.7.700.242
    Previous versions of Flash Player can be found on the Archived Flash Player page
    If you encounter a problems with broken or missing links, please clear your browser cache and try again.  If the problem persists, please create a new post in our forum or send email to [email protected].

    No, the problem still occurs.
    It's weird there are no plug-in errors or something.
    With fp installed:
    with fp uninstalled:
    as a side note: a few weeks ago, I made a new clean Mac OS installation because of a harddrive replacement. So, the whole system is actually very tidy...  

Maybe you are looking for