What If Receiving Trasaction Processor Fails in Oracle Applications

If receiving transaction processor fails to receive, inspect or deliver lines in Receiving Open Interface. You can run Receiving Interface Errors Report to know the exact error.

Instead of running Receiving Interface Errors Report concurrent Program, you can simply query the error from Oracle Database in po_interface_errors table.

Use following query:

select * from apps.po_interface_errors where request_id = 1192033 order by creation_date desc;

where parameter request_id is , request id of concurrent program receiving transaction processor.


Leave a Reply