Sunday, July 28, 2019

JDR Utility in OAF

--JDR Utility in OAF

--1.      LISTDOCUMENTS: For extracting full path of documents.Can provide full or half path as first parameter

DECLARE
BEGIN
jdr_utils.listdocuments(‘/oracle/apps/per’, TRUE);
END;

--2.      LISTCUSTOMIZATIONS: List of all the Personalizations or Extensions for a specific object.

BEGIN
jdr_utils.listcustomizations( ‘/oracle/apps/icx/por/wf/webui/ReqLinesNotificationsRN’);
END;

--3.      PRINTDOCUMENT: To see content of personalization

DECLARE
BEGIN
jdr_utils.printdocument(/oracle/apps/per/irc/candidateSelfService/server/customizations/site/0/VisitorAM’);
END;

--4.     DELETEDOCUMENT: To delete a document or personalization

DECLARE
BEGIN
jdr_utils.deletedocument(‘/oracle/apps/per/irc/candidateSelfService/server/customizations/site/0/VisitorAM’);
END;

No comments:

Post a Comment