You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create a custom PL/SQL package as an Oracle REST-API web service
Prerequisite
Create the PL/SQL package in the database
Create a annotated interface file based on annotation standards.
Run the Standalone IREP Parser(irep_parser.sh) which generates the *.ildt files.
Use FNDLOAD to upload these ildt files
Verify uploaded interface in IREP UI
Create the integration repository loader file (iLDT) file using Putty
Deploy the custom PL/SQL interface as REST services in the Oracle Integration Repository
Deploy the Service by pressing "Deploy" button
Create the necessary security grants for the custom integration interfaces
Test the REST-API web service
Find business entity SQL
SELECTFL.LOOKUP_CODE, FL.MEANING, FL.DESCRIPTIONFROM FND_LOOKUPS FL
WHEREFL.LOOKUP_TYPE='BUSINESS_ENTITY'-- AND FL.LOOKUP_CODE = 'PER_EMPLOYEE'ANDFL.ENABLED_FLAG='Y'AND ( TRUNC (SYSDATE) BETWEEN TRUNC (FL.START_DATE_ACTIVE)
AND TRUNC (FL.END_DATE_ACTIVE)
ORFL.END_DATE_ACTIVE IS NULL)
ORDER BYFL.LOOKUP_CODE NULLS LAST
SELECT*FROM FND_LOOKUP_ASSIGNMENTS
WHERE LOOKUP_TYPE ='BUSINESS_ENTITY'AND LOOKUP_CODE ='PER_EMPLOYEE';