How can we find the receipts related to a transmission?
Every lockbox loading has a transmission name in oracle applications.
How can we find the receipts stuck or related to a transmission if they stored in interface?
Note: If you have setup to purge/delete the interface records after successful receipts, you may not get the receipts with this query.
Ar_transmissions_all
WHERE transmission_name =‘wirep.05041908361_1′; – transmissionName is wirep.05041908361_1
SELECT * FROM AR_PAYMENTS_INTERFACE
WHERE transmission_id IN (
SELECT transmission_id FROM
Ar_transmissions_all
WHERE transmission_name =‘wirep.05041908361_1′); – transmissionName is wirep.05041908361_1

Comments
No comments yet.