DBA Data[Home] [Help]

APPS.JAI_RCV_TRX_PROCESSING_PKG dependencies on RCV_TRANSACTIONS_INTERFACE

Line 295: Run a infinite loop till the data in rcv_transactions_interface table

291: This call will wait till the RVCTP concurrent is completed.
292:
293: Added a parameter group_id Default null
294: If the group_id is not null
295: Run a infinite loop till the data in rcv_transactions_interface table
296: is purged for the particular group_id.
297:
298: The rest of the code in the concurrent is processed only after
299: the data is purged.

Line 1282: from rcv_transactions_interface

1278:
1279: Cursor c_interface_exists(cp_group_id IN NUMBER)
1280: IS
1281: select 1
1282: from rcv_transactions_interface
1283: where group_id = cp_group_id
1284: and rownum=1 ;
1285:
1286: Cursor c_interface_error(cp_group_id IN NUMBER)

Line 1289: from rcv_transactions_interface

1285:
1286: Cursor c_interface_error(cp_group_id IN NUMBER)
1287: IS
1288: select 1
1289: from rcv_transactions_interface
1290: where
1291: group_id = cp_group_id and
1292: (transaction_status_code = 'ERROR' or processing_status_code = 'ERROR') ;
1293: