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 1636: from rcv_transactions_interface

1632:
1633: Cursor c_interface_exists(cp_group_id IN NUMBER)
1634: IS
1635: select 1
1636: from rcv_transactions_interface
1637: where group_id = cp_group_id
1638: and rownum=1 ;
1639:
1640: Cursor c_interface_error(cp_group_id IN NUMBER)

Line 1643: from rcv_transactions_interface

1639:
1640: Cursor c_interface_error(cp_group_id IN NUMBER)
1641: IS
1642: select 1
1643: from rcv_transactions_interface
1644: where
1645: group_id = cp_group_id and
1646: (transaction_status_code = 'ERROR' or processing_status_code = 'ERROR') ;
1647: