How to Identity Self service transactions in HRMS.

Hi,
I wanted to create the sql report only for the transactions which are being updated or corrected by self service page only. I would like to know how can I capture only self service transactions when I modify personal Information in HRMS self service page.
Thanks in Advance,
Mangesh

Try with the below tables:
There are 3 temporary tables that hold data for entries made in SSHR until the approval cycle is complete
1) HR_API_TRANSACTIONS
2) HR_API_TRANSACTIONS_STEPS
3) HR_API_TRANSACTIONS_VALUES
But the data from the above tables are deleted once the transaction is complete.
The data is moved to these tables.
1.pqh_ss_transaction_history
2.pqh_ss_step_history
3.pqh_ss_value_history

Similar Messages

  • IN Advaced HRMS(iRecruitment and self service applications of HRMS)

    Hi,
    Please provide the following information,i am new to this modules.
    a) iRecruitment base tables.how many interfaces available in iRecruitment?
    b) Self service applications of HRMS base tables and interfaces available in
    irecurment?
    thanks.

    check irep.oracle.com

  • HR Self-Service Transactions - error notifications

    In our HR system we are using Administrator Self Service, allowing staff to make changes to HR records for people they manage.
    In quite a few cases, our central admin team are receiving notifications with subject lines like:
    Application Error has occurred in your process Change Job and Terms performed on Bloggs, Mr Joseph
    When opening the notification, the error message at the top of the page says a range of things, such as:
    The changes were not applied because This transaction has failed because the employee's record or eligibility status has changed. Submit a new transaction.
    Another user has updated this person's record. Please reject the transaction so the initiator can check whether the change is still valid for the updated record.It would seem that the cause of these is because between the HR Self Service transaction being submitted and the error notification going out, something has changed on the HR record in question.
    Is there any way I can work out where that change is being made, or is that too hard?
    I can see the HR Self Service Transaction via:
    SELECT   hat.creation_date hrss_tx_date
           , wn.notification_id nid
           , wn.begin_date notif_date
           , wn.status
           , wn.item_key
           , REPLACE(
                wn.subject
              , 'Application Error has occurred in your process '
             ) subject
           , fu.user_name originator_uname
           , papf3.full_name hr_record_being_changed
           , fu.description originator_description
           , papf.full_name originator_full_name
           , papf2.full_name manager_full_name
           , fu2.user_name manager_login
           , fu2.description manager_description
        FROM applsys.wf_notifications wn
           , applsys.fnd_user fu
           , applsys.fnd_user fu2
           , hr.hr_api_transactions hat
           , hr.per_all_people_f papf
           , hr.per_all_people_f papf2
           , hr.per_all_people_f papf3
           , hr.per_all_assignments_f paaf
       WHERE hat.item_key = wn.item_key
         AND hat.created_by = fu.user_id
         AND papf2.person_id = fu2.employee_id
         AND hat.creator_person_id = papf.person_id
         AND papf.person_id = paaf.person_id
         AND paaf.supervisor_id = papf2.person_id
         AND hat.selected_person_id = papf3.person_id
         AND SYSDATE BETWEEN papf.effective_start_date AND papf.effective_end_date
         AND SYSDATE BETWEEN papf2.effective_start_date AND papf2.effective_end_date
         AND SYSDATE BETWEEN papf3.effective_start_date AND papf3.effective_end_date
         AND SYSDATE BETWEEN paaf.effective_start_date AND paaf.effective_end_date
         AND recipient_role = 'HRMS_DEV_ROLE'
         AND subject LIKE 'Application Error%'
         AND wn.notification_id = :nid
    ORDER BY wn.begin_date DESC;But if I look at e.g. the per_all_people_f or per_all_assignments_f tables to look for changes made to the same HR record that the Self-Service transaction was for, nothing recent is returned:
    SELECT   papf.employee_number
           , paaf.assignment_number
           , paaf.object_version_number paaf_ovn
           , papf.creation_date papf_creation_date
           , papf.last_update_date papf_last_update_date
           , paaf.creation_date paaf_creation_date
           , paaf.last_update_date paaf_last_update_date
           , papf.object_version_number papf_ovn
        FROM hr.per_all_people_f papf
           , hr.per_all_assignments_f paaf
       WHERE papf.person_id = paaf.person_id
         AND papf.full_name LIKE :pn
    ORDER BY paaf.last_update_date DESC;I have seen stuff on My Oracle Support about "object version number" e.g. 1300998.1 says:
    "This is an expected behavior. Since after first approval the object version number of contact's personal details has changed. Now when you try to approve second notification we will compare the OVN in transaction tables to the OVN in database (which got changed). Hence we get an object version mismatch and above error."However, I am still stuck trying to see what has changed. I need to find this so I can go to the functional people who don't understand why they are getting the error notifications, so say "Look, this has changed since the Self-Service transaction was submitted, hence the error".
    Any advice would be much appreciated.
    Thanks

    Hi,
    In the end I wrote some SQL which identified the fact that the HR tables had been updated in Core Apps AFTER a Self-Service transaction had been started.
    SELECT distinct hat.creation_date workflow_start
           , wn.notification_id nid
           , (SELECT MAX(last_update_date) FROM hr.per_all_assignments_f paaf2 WHERE paaf2.person_id = papf3.person_id) last_assig_update
           , wn.begin_date error_date
           , wn.begin_date - (SELECT MAX(last_update_date) FROM hr.per_all_assignments_f paaf2 WHERE paaf2.person_id = papf3.person_id) dd
           , wn.item_key
                 , SUBSTR(
                      wn.subject
                    , 48
                    , INSTR(SUBSTR(wn.subject, 48 + 2), 'performed on ')
                   ) transaction_type
                 , CASE
                      WHEN SUBSTR( wn.subject , INSTR(wn.subject, 'performed on ') + 13 , LENGTH(wn.subject) - INSTR(wn.subject, 'performed on ') + 13 ) LIKE '%Miss%' THEN REPLACE( SUBSTR( wn.subject , INSTR(wn.subject, 'performed on ') + 13 , LENGTH(wn.subject) - INSTR(wn.subject, 'performed on ') + 13 ) , ' Miss' , '' )
                      WHEN SUBSTR( wn.subject , INSTR(wn.subject, 'performed on ') + 13 , LENGTH(wn.subject) - INSTR(wn.subject, 'performed on ') + 13 ) LIKE '%Mrs%' THEN REPLACE( SUBSTR( wn.subject , INSTR(wn.subject, 'performed on ') + 13 , LENGTH(wn.subject) - INSTR(wn.subject, 'performed on ') + 13 ) , ' Mrs' , '' )
                      WHEN SUBSTR( wn.subject , INSTR(wn.subject, 'performed on ') + 13 , LENGTH(wn.subject) - INSTR(wn.subject, 'performed on ') + 13 ) LIKE '%Ms%' THEN REPLACE( SUBSTR( wn.subject , INSTR(wn.subject, 'performed on ') + 13 , LENGTH(wn.subject) - INSTR(wn.subject, 'performed on ') + 13 ) , ' Ms' , '' )
                      WHEN SUBSTR( wn.subject , INSTR(wn.subject, 'performed on ') + 13 , LENGTH(wn.subject) - INSTR(wn.subject, 'performed on ') + 13 ) LIKE '%Mr%' THEN REPLACE( SUBSTR( wn.subject , INSTR(wn.subject, 'performed on ') + 13 , LENGTH(wn.subject) - INSTR(wn.subject, 'performed on ') + 13 ) , ' Mr' , '' )
                      ELSE SUBSTR( wn.subject , INSTR(wn.subject, 'performed on ') + 13 , LENGTH(wn.subject) - INSTR(wn.subject, 'performed on ') + 13 )
                   END performed_on      
           , wn.subject
           , papf3.full_name
           , papf3.employee_number empno
           , fu.user_name by_un
           , fu.description by_desc
           , papf.full_name by_name
        FROM applsys.wf_notifications wn
           , applsys.fnd_user fu
           , hr.hr_api_transactions hat
           , hr.per_all_people_f papf
           , hr.per_all_people_f papf3
           , hr.per_all_assignments_f paaf
       WHERE hat.item_key = wn.item_key
         AND hat.created_by = fu.user_id
         AND hat.creator_person_id = papf.person_id
         AND papf.person_id = paaf.person_id
         AND hat.selected_person_id = papf3.person_id
         AND SYSDATE BETWEEN papf.effective_start_date AND papf.effective_end_date
         AND SYSDATE BETWEEN papf3.effective_start_date AND papf3.effective_end_date
         AND SYSDATE BETWEEN paaf.effective_start_date AND paaf.effective_end_date
         AND subject NOT LIKE '%Phone Numbers%'
         AND recipient_role = 'HRMS_DEV_ROLE'
         AND subject LIKE 'Application Error%'
         AND papf.current_employee_flag = 'Y'
         AND paaf.assignment_type = 'E'
    ORDER BY 1 DESCIt helped compare things in the background and prove in our case that there wasn't a system problem.
    Thanks

  • Purchase Order Information in Self Service Pages in HRMS

    Hi,
    Our system is on 12.1.3. We have a requirement such that a OAF page needs to be built and put after Location Changes (Self Service) which would give the Accounting segments and some other details as in Personal Info --> Assignemnts --> Purchase Order Info (D2K Forms of HRMS). User woudl select the values and then proceed to the review page.
    1. How the data which the users would enter will be saved in the Transaction_API tables?
    2. will that Automatically populate the review page with the old and new valuues.
    if any one has worked on this please share the approach.
    Thanks

    Hi,
    As far as my understanding and experience goes, page build is very complex using SSHR architecture as you will need to inherit SSHR AMs and Controller modules in your pages and also understand the code and supply of parameters etc to the pages. This will need a lot of research and though I want to help, It will be difficult to put it in a forum post in sufficient detail.
    I can assure you the work involved will be in weeks than in days. Also, there is no way to display the review page based on a new region without custom build to do it.
    However, a possible workaround which you could do is to use DFF or EIT to capture this information and then transfer it to the "Correct Home" of the data offline through a CP or via another node in the workflow.
    Sorry to be pessimistic. Please let me know if I can help with anything else.
    Edited by: Vinayaka Prabhu on Feb 7, 2012 4:31 PM

  • Reg Self Service Personalization for Termination transaction

    Hi All,
    I am new to self service personalization. User wants to personalize the self servie pages.
    User Requirement: our client has diffetent self service transactions like
    Payroll Name and Subgroup Change
    Termination
    Location Only Changes
    People Group Only Changes etc.
    Whenever user is selecting Termination as transaction, and continued to the next step, calendar shows up to select the date for termination. Here I need to personalize such that user should select last day of the employee as termination date rather than following day.
    Eg: Employee last date is 01-oct-2009, prersently some users are taking 02-oct-2009 as termination date assuming that 01-oct-2009 is the last working day. For payroll process, 01-oct-2009 needs to be last day of the employee and he needs to terminate same date for processing.
    Please advise me.

    You can't do this through personalization. You need to extend the page controller to restrict it.
    Thanks
    --Anil                                                                                                                                                                                                                                       

  • IRecruitment and self service applications base tables&interfaces

    Hi,
    Please provide the following information,i am new to this modules.
    a) iRecruitment base tables.how many interfaces available in iRecruitment?
    b) Self service applications of HRMS base tables and interfaces?
    thanks.

    check irep.oracle.com

  • SAP IdM - Self Service password reset

    Hi All
    Has anyone configured the Self-service password reset option yet?
    I have a question that the documentation doesn't answer. We plan on using the IdM on our SAP landscape which would involve at least 9 seperate systems, meaning the Dev, QA and Prod systems for BW 3.5, CRM 2007 & ECC.
    My question is if we have a user that has access to all these systems, but only needs to reset their password in 1 of them. How does the Self-service password reset option know which system that user's id is locked in or would it be resetting the password in every one of the systems?
    Ken

    That's right. Users would have to repeat the same process if they want to change the password for say 2 systems out of the 9. Its a quick and easy way to get it up and running without much customization.
    But if you want to eliminate this repetition, the ideal way would be to customize the UI (some thig like this which comes as part of RDS)
    Cheers,
    Murali.

  • Setup self service HR

    Pls guide me how to setup self service HR R 11.5.10.2. If can write some in detail will be helpful to me at [email protected]
    Regards
    Abdullah

    Pl see the documentation at http://download.oracle.com/docs/cd/B25516_18/current/acrobat/115sshrig.zip
    HTH
    Srini

  • How To Display Error Message In Self Service Page

    Dear All,
    I am using 11.5.10 Oracle HRMS self Service ,,,
    How can I display error message on the top of the self service page if some action happen ?
    Best Regards

    Time entry rules maybe?

  • HOW TO Restrict Absence Type LOV Self Service in 12.1.3

    Hi All,
    Will someone please inform of whar is the package to use for this new feature restriction as stated below. Thanks.
    From new feature PDF 12.1.3:
    3.26.4.6. Restrict Absence Type LOV
    Prior to this release, all absence types created using Oracle HRMS are displayed to users in Self-Service HR. With this release, implementers can update ""a package"" to restrict the absence types that are displayed to users based on the business requirements. This feature ensures that employees enter only those absences for which they are eligible, and managers do not have to verify the validity of the absence type of employee requests.

    Apologies for the delay here.
    The package in question is hr_absence_restricted. You replace the Package Body of this package so that the function absences_restricted returns a comma-separated array of Absence Type ids that SHOULD NOT be displayed.
    For example,
    RETURN '123, 456, 789'
    Would prevent Absence Type Ids 123, 456 and 789 from appearing in the user's List of Values. This is supposed to be described in the following Oracle Article but it's not published:
    Oracle Article How To Restrict Absence Type LOV in Oracle Self-Service Human Resources (Doc ID 1122674.1)

  • How to enable fnd log in self service page

    Hello,
    In professional forms, we can enable fnd log using the profile options "FND: Debug Log Enabled" to Yes and "FND: Debug Log Level" to different levels.
    Similarly, can we do the same with Self Service page? how and where can i see the log results? Also when i'm running the selfservice page from jDeveloper, is there any possibility to see the entire log?
    I need to track why i'm unable to run a page from jdeveloper and i need to track the log.
    Thank you all for the help in advance.
    kK

    Hi,
    To Enable to Log for a self service page click on 'Diagnostics' link avaible at the Upper Right corner of the page. Now from the Diagnostic poplist select the 'Show Log On Screen' then select the log level and save.
    Now you perform your fucntional steps all the log messages you will be able to see at the bottam of the page.
    Regards,
    Syed.

  • How to Submit a Concurrent Request Set Using a Self-Service Page

    Hi all,
    I would like to know how to Run/Submit a Concurrent Request Set Using a Self-Service Page
    Thanks.
    Bench

    Hi all,
    I would like to know how to Run/Submit a Concurrent Request Set Using a Self-Service Page
    Thanks.
    Bench

  • How to remove Layout page when submitting reports in self service?

    Hi, when submitting a report or request thru self service, there are 7 steps or pages to go thru. We would like to hide some of these pages and we learned that this could be done thru the Web HTML Call tab when creating the function for the report (System Administrator->Application->Function). For example if you want to hide the Schedule page, just add &scheduleRegion=Hide in the Web HTML Call. We wanted to hide the Layout page and we added layoutRegion=Hide but it's still not hiding it. The other pages we could hide but for some reason the layout page won't. Anybody knows how to do this? Did we get the correct region name for the Layout page (i.e layoutRegion)?
    Thanks,
    Ronaldo

    Jus convert your report in Page Layout mode and see if your first pafe is getting expand in the second page.
    Now check if there are any cell going into second page.
    - if there are any blank cell which is there after table.
    you have to check formating very carefull.

  • How to configure sync rules involving a CSV file and portal self service

    Hello,
     I need to configure some FIM sync rules for the following scenario:
     User account details are entered from a HR CSV file and exported to AD  Users have the ability to modify their own AD attributes in the
    FIM portal (there is not a requirement for them to view their  HR CSV data in the portal). The FIM portal modifications will be exported to AD as expected.  
    My setup is as follows:
    CSV file - name, last name, employee ID, address.
    CSV MA - has direct attribute flows configured in the MA between the data source and MV Portal self service attributes –      
    users can edit mobile, display name and photo
    I've also set the CSV MA as precedent for the attributes
    FIM MA – attribute flows defined for MV to Data Source as usual (i.e. firstname to firstname, accountname to accountname, etc).
    AD MA – no attribute flows defined as inbound and outbound sync rules have been configured in the portal using the Set\MPR\Triple.
    I’m thinking of using the following run profiles:
    CSV MA – full import and delta sync (imports HR data)
    FIM MA –  export and delta import (imports portal changes)
    FIM MA – delta sync (syncs any portal changes)
    AD MA – export and delta import
    If my understanding is correct this should sync HR data from CSV to AD, as well as user attribute self service updates from the portal to AD.
    If I wanted to just do a HR CSV sync could I get away with just steps 1 & 4 ? (presumably not as my rules are in the FIM portal?)
    If I wanted to do just a portal sync, could I get away steps 2-4?
    Any advice on how to improve my setup is much appreciated - cheers
    IT Support/Everything

    The truth is that your design should be done in the way that it doesn't matter which profiles in which order you will execute. At the end, if you will run all import, synch and export profiles on each data source you should get same result. This is beauty
    of synch engine here.
    Your steps from 1-4 will synch data to your data sources and at the end will give you expected result. But not because of the order you are executing them but because of correct attribute flows. If flows from CSV file and from FIM portal might be done for
    the same attributes you need to think also about attribute precedence.   
    Tomek Onyszko, memberOf Predica FIM Team (http://www.predica.pl), IdAM knowledge provider @ http://blog.predica.pl

  • How to add a new field in OIM Self Services Page

    Hi All,
    I need to add some custom attribute in OIM self Services page.
    Please let me know how to do it
    Thanks&Regards
    Sri

    Check this: Add UDF to Self Registration form in OIM 11.1.X
    -Bikash

Maybe you are looking for

  • How to print a page range in Word 2011

    Hello I would like to print only a certain rage of pages of a large Word 2011 document. However, when I enter "from page"  = 5 and "to page" = 7, my MacBook and my MacMini oth print always the whole document. I tried it on three diffrent printer (Can

  • WebLogic Server 6.1:Incompatible service packs in CLASSPATH

    Hi, When I tried to start weblogic 6.1,I got the following exception.Please let me know,how to go ahead. The WebLogic Server did not start up properly. Exception raised: weblogic.common.internal.VersioningError: Incompatible service packs in CLASSPAT

  • Error unarchiving object

    I was trying to create a simple message queue using archived message objects to the file system. My message object coding methods are implemented as follows: - (id) initWithCoder:(NSCoder *) aDecoder if ( self = [super init] ) self.endpoint = [aDecod

  • How to format a usb flash drive to 'Mac OS Extended-Journaled' format in windows pc?

    Hello, I have a Mac OS X - Mountain Lion ISO file. I want to install Mac OS X on my Windows PC. So I want to format my pen drive in windows to Mac OS X Extended. Is there any software or other way to do this. Any helpful suggestions will surely be ap

  • Help- some albums/music wont sync with i touch

    I have recently purchased an i touch 16GB. I transfered all my music on my PC across into itunes(MP3's and WMA(converted)) and 17 albums in my itunes will not sync with the i touch, even though other albums have. I have restored the i touch to factor