About Me

Dubai, United Arab Emirates
My name is Muhammad Faizan Karim and my aim is to spread the knowledge to everyone who want to learn oracle HRMS. I will try to write the video blogs for beginners so they can understand e-business suits from HRMS perspective, and if you have any difficulty in oracle applications HRMS , please feel free to contact with me at this email : faizan.kareem.ocp@gmail.com
Powered by Blogger.
Monday, April 3, 2017
In order to remove the substitution definition, you have to identify the customization path and then use the jdr API to remove it.

In order to identify the customization, use the following call:

    1 begin
    2   jdr_utils.listCustomizations( '/oracle/apps/per/selfservice/absence/server/AbsenceTypeVO' ) ;
    3 end ;
    4 /
    5 
    6 

It will output the path of the customization, which is the one to remove.
    1/oracle/apps/per/selfservice/absence/server/customizations/site/0/AbsenceTypeVO
    2 

In order to delete the customization definition, use the following call, using the output from the previous command as a parameter.
    1 begin
    2   jdr_utils.DeleteDocument( '/oracle/apps/per/selfservice/absence/server/customizations/site/0/AbsenceTypeVO' ) ;
    3 end ;

    4 /
    5 Successfully deleted document /oracle/apps/per/selfservice/absence/server/customizations/site/0/AbsenceTypeVO.

Tuesday, January 17, 2017
Adding transaction details to FYI notifications after approval
In R11 Self Service applications, it was not possible to send transaction details in FYI notification after approval. There is a new feature in R12.1.3 which allows to configure specific notifications to contain transaction details. This will certainly help user community who were long waiting for this functionality (specifically for absence approvals through SSHR).

Steps to configure this functionality: 
1.    Log in using System Administrator responsibility
2.    Application > Function
3.    Add &pNtfFyiDetails=Y into form parameters to both functions: HR_LOA_SS and HR_LOA_MGR_SS
4.    Save

If this parameter is set to Y, then the FYI Notification page displays a Details region with the Proposed column and a Supporting Documents region.

Note: This feature is available from 12.1.3.


Referencehttps://oraebizblog.wordpress.com/2012/09/18/adding-transaction-details-to-fyi-notifications-after-approval/