DBA Data[Home] [Help]

APPS.FA_BEGIN_MASS_TRX_PKG dependencies on FA_BOOK_CONTROLS

Line 81: * updating the request ID in fa_book_controls to the request_id

77: /* All checks completed, update book_controls with mass request id */
78:
79: /*
80: * Ensure this is the only request running against the book by
81: * updating the request ID in fa_book_controls to the request_id
82: * of the running request
83: */
84:
85: UPDATE fa_book_controls

Line 85: UPDATE fa_book_controls

81: * updating the request ID in fa_book_controls to the request_id
82: * of the running request
83: */
84:
85: UPDATE fa_book_controls
86: SET mass_request_id = X_request_id
87: WHERE book_type_code = X_book;
88:
89: return (TRUE);

Line 116: UPDATE fa_book_controls

112: X_request_id IN NUMBER
113: , p_log_level_rec IN FA_API_TYPES.log_level_rec_type) RETURN BOOLEAN IS
114: BEGIN
115:
116: UPDATE fa_book_controls
117: SET mass_request_id = NULL
118: WHERE book_type_code = X_book
119: AND mass_request_id = X_request_id;
120: