OAF - Retrieve a Region/Page from Oracle MDS


/ Published in: Other
Save to your folder(s)

A quick pl/sql command to select from the MDS using the Oracle JDR_UTILS package.


Copy this code and paste it in your HTML
  1. begin
  2. --List the MDS contents for a folder
  3. --APPS_FND.JDR_UTILS.listContents('/oracle/apps/pa/structure/webui',FALSE);
  4.  
  5. --Get a specific Page/Region from MDS
  6. APPS_FND.JDR_UTILS.printDocument(
  7. '/oracle/apps/pa/structure/assignment/webui/TaskDetailsResourcesRN'
  8. );
  9. end;

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.