0% found this document useful (0 votes)
11 views1 page

Script

The document provides a SQL script to find Oracle API packages for any module by searching the database for packages containing the module name and 'API' and returning package information; changing the module name in the script allows searching for different modules' APIs.
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
Download as txt, pdf, or txt
0% found this document useful (0 votes)
11 views1 page

Script

The document provides a SQL script to find Oracle API packages for any module by searching the database for packages containing the module name and 'API' and returning package information; changing the module name in the script allows searching for different modules' APIs.
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1/ 1

Script To find Oracle API's for any module: ~~~~~~~~~~~~~~~~~~~~~~~~~~~ Following script and get all the packages

related to API in Oracle applications, from which you can select APIs that pertain to AP. You can change the name like to PA or AR and can check for different modules select substr(a.OWNER,1,20) , substr(a.NAME,1,30) , substr(a.TYPE,1,20) , substr(u.status,1,10) Stat , u.last_ddl_time , substr(text,1,80) Description from dba_source a, dba_objects u WHERE 2=2 and u.object_name = a.name and a.text like '%Header%' and a.type = u.object_type and a.name like 'PA_%API%' order by a.owner, a.name;

You might also like