DBA Data[Home] [Help]

APPS.MTL_ONLINE_TRANSACTION_PUB dependencies on MTL_TRANSACTIONS_INTERFACE

Line 33: UPDATE MTL_TRANSACTIONS_INTERFACE

29: /*
30: * Lock all the rows corresponding to this batch so that
31: * the Background manager does not pick it up
32: */
33: UPDATE MTL_TRANSACTIONS_INTERFACE
34: SET LOCK_FLAG = 1
35: WHERE PROCESS_FLAG = 1
36: AND TRANSACTION_HEADER_ID = l_transaction_header_id;
37: COMMIT;

Line 71: from mtl_transactions_interface

67: if(p_retval <> 0) THEN
68: p_success := false;
69: select error_code, error_explanation
70: into p_error_code, p_error_explanation
71: from mtl_transactions_interface
72: where transaction_header_id = l_transaction_header_id
73: and rownum = 1;
74:
75: IF (l_debug = 1) THEN