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.

0 comments: