/ Published in: Other
A quick pl/sql command to select from the MDS using the Oracle JDR_UTILS package.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
begin --List the MDS contents for a folder --APPS_FND.JDR_UTILS.listContents('/oracle/apps/pa/structure/webui',FALSE); --Get a specific Page/Region from MDS APPS_FND.JDR_UTILS.printDocument( '/oracle/apps/pa/structure/assignment/webui/TaskDetailsResourcesRN' ); end;