DBA Data[Home] [Help]

APPS.FA_XLA_DRILL_GT_PKG SQL Statements

The following lines contain the word 'select', 'insert', 'update' or 'delete':

Line: 9

 |    This function will insert the transaction_header_id into the GT table|
 |    so that the inquiry view fa_ael_sl_v returns correct data.           |
 |                                                                         |
 +=========================================================================*/
FUNCTION load_trx_gt(
   p_transaction_header_id       NUMBER,
   p_book_type_code              VARCHAR2
) return BOOLEAN IS

BEGIN

   insert into
   fa_inquiry_trx_gt (transaction_header_id, book_type_code)
   values(p_transaction_header_id, p_book_type_code);