Query to find all APIs of Oracle Apps modules
•By admin
Query to find all APIs of Oracle Apps modules
Query to list all APIs in Oracle EBS
List of all Oracle apps APIs
Syntax of Oracle EBS APIs
oracle ebs api list
oracle ebs inventory api
SQL Querysql
1SELECT SUBSTR (a.OWNER, 1, 20),
2 SUBSTR (a.NAME, 1, 30),
3 SUBSTR (a.TYPE, 1, 20),
4 SUBSTR (u.status, 1, 10) Stat,
5 u.last_ddl_time,
6 SUBSTR (text, 1, 80) Description
7 FROM dba_source a, dba_objects u
8 WHERE u.object_name = a.name
9 AND a.text LIKE '%Header%'
10 AND a.TYPE = u.object_type
11 AND a.name LIKE 'AR_%API%' -- Check for AR Related APIs
12ORDER BY a.owner, a.name;Related posts:
- Register a test concurrent program from backend in Oracle EBS
- Supervisor Hierarchy and Approval Limits in Oracle EBS R12
- Query to find vacation rules in Oracle R12
- View java class source in oracle database
- Load Java source code in oracle database
- OAF customizations queries
- Oracle apps list of concurrent programs in a Request Set
- Query to get Organization Hierarchy in Oracle apps
- Oracle apps query to find incompatible programs blocking a concurrent request
- Form function attached to which responsibility and user
- Query to find the responsibility attached to user in oracle apps
- How to enable debug log in Oracle apps EBS