- JDR_UTILS.LISTDOCUMENTS
- JDR_UTILS.PRINTDOCUMENT
- JDR_UTILS.DELETEDOCUMENT
1) The script which lists all the MDS documents of specified directory currently imported into database :
DECLARE
BEGIN
jdr_utils.listdocuments ( '/oracle/apps/per/selfservice.webui' , TRUE ) ;
END ;
2) The script to list the Personalizations or Extensions for a specific object :
DECLARE
BEGIN
jdr_utils.printdocument ( ' p_document => /oracle/apps/per/selfservice.webui/ somepagePG ') ;
END ;
3) The script to delete document or personalizations/extensions :
DECLARE
BEGIN
jdr_utils.deletedocument ( ' p_document => /oracle/apps/per/selfservice.webui/ somepagePG ') ;
END ;
No comments:
Post a Comment