Friday, August 2, 2019

API


Give example of 2 APIs in Oracle and explain their purpose
OE_ORDER_PUB
USE
SCRIPT
To Create an Order with one Line
To Update Order Header Details
To Add New Line to an Existing Sales Order
To Delete a Sales Order line
To Cancel a Sales Order line
To Book a Sales order
To Delete a Sales Order
To Cancel a Sales Order
To Apply hold on a sales order
To Release hold on a sales order

HR_EMPLOYEE_API
Create Employee
HR_PERSON_API
Update Person
HR_CONTACT_REL_API
Create contact
Interface Errors:
OM Interface tables:
OE_HEADERS_IFACE_ALL, OE_LINES_IFACE_ALL
Error tables:
OE_PROCESSING_MSGS, OE_PROCESSING_MSGS_TL
SELECT OPT.*

FROM OE_PROCESSING_MSGS OPM
       ,OE_PROCESSING_MSGS_TL OPT

WHERE OPM.TRANSACTION_ID = OPT.TRANSACTION_ID
AND ORIGINAL_SYS_DOCUMENT_REF = dof_ref;
From Oracle front end:
Order Management Super User > Import Orders > Corrections
AR:
Interface tables:
RA_ INTERFACE_LINES_ALL
Error tables:
RA_INTERFACE_ERRORS_ALL
From Oracle front end:
Receivables > Control > Autoinvoice > Interface Exceptions

No comments:

Post a Comment

Link between Receivables, Payables and Projects

 --Link between AP, AR and PA select aia.* from ap_invoices_all aia ,pjc_exp_items_all peia ,pjb_bill_trxs pbt ,pjb_inv_line_dists pild ,pjb...