DBA Data[Home] [Help]

APPS.FA_TERMINAL_GAIN_LOSS_PVT dependencies on FA_CACHE_PKG

Line 103: if NOT fa_cache_pkg.fazcbc(X_book => l_asset_hdr_rec.book_type_code

99: /*bug#15897249 ends */
100: --l_asset_type_rec.asset_type := 'GROUP'; --bug#15897249 Commented
101:
102: -- call the cache for the primary transaction book
103: if NOT fa_cache_pkg.fazcbc(X_book => l_asset_hdr_rec.book_type_code
104: ,p_log_level_rec => g_log_level_rec) then
105: if (g_log_level_rec.statement_level) then
106: fa_debug_pkg.add(l_db_title, 'ERROR', 'Calling fazcbc',
107: p_log_level_rec => g_log_level_rec);

Line 208: l_asset_hdr_rec.set_of_books_id := fa_cache_pkg.fazcbc_record.set_of_books_id;

204: if (g_log_level_rec.statement_level) then
205: fa_debug_pkg.add(l_db_title, 'Calling', 'FA_XLA_EVENTS_PVT.create_transaction_event',
206: p_log_level_rec => g_log_level_rec);
207: end if;
208: l_asset_hdr_rec.set_of_books_id := fa_cache_pkg.fazcbc_record.set_of_books_id;
209: if not FA_XLA_EVENTS_PVT.create_transaction_event(
210: p_asset_hdr_rec => l_asset_hdr_rec,
211: p_asset_type_rec => l_asset_type_rec,
212: px_trans_rec => l_trans_rec,

Line 319: if not fa_cache_pkg.fazccb(l_asset_hdr_rec.book_type_code,

315: OPEN c_get_unit;
316: FETCH c_get_unit INTO l_adj.current_units , l_asset_cat_rec.category_id;
317: CLOSE c_get_unit;
318:
319: if not fa_cache_pkg.fazccb(l_asset_hdr_rec.book_type_code,
320: l_asset_cat_rec.category_id
321: ,p_log_level_rec => g_log_level_rec) then
322: if (g_log_level_rec.statement_level) then
323: fa_debug_pkg.add(l_db_title, 'ERROR', 'Calling fazccb',

Line 330: l_adj.account := fa_cache_pkg.fazccb_record.DEPRN_RESERVE_ACCT;

326:
327: raise tgl_err;
328: end if;
329:
330: l_adj.account := fa_cache_pkg.fazccb_record.DEPRN_RESERVE_ACCT;
331:
332: if (g_log_level_rec.statement_level) then
333: fa_debug_pkg.add(l_db_title, 'CALL', 'FA_INS_ADJUST_PKG.faxinaj for RESERVE',
334: p_log_level_rec => g_log_level_rec);

Line 359: l_adj.account := fa_cache_pkg.fazcbc_record.nbv_retired_gain_acct;

355:
356: if (p_deprn_reserve > 0) then
357: l_adj.debit_credit_flag := 'CR';
358: l_adj.account_type := 'NBV_RETIRED_GAIN_ACCT';
359: l_adj.account := fa_cache_pkg.fazcbc_record.nbv_retired_gain_acct;
360: else
361: l_adj.debit_credit_flag := 'DR';
362: l_adj.account_type := 'NBV_RETIRED_LOSS_ACCT';
363: l_adj.account := fa_cache_pkg.fazcbc_record.nbv_retired_loss_acct;

Line 363: l_adj.account := fa_cache_pkg.fazcbc_record.nbv_retired_loss_acct;

359: l_adj.account := fa_cache_pkg.fazcbc_record.nbv_retired_gain_acct;
360: else
361: l_adj.debit_credit_flag := 'DR';
362: l_adj.account_type := 'NBV_RETIRED_LOSS_ACCT';
363: l_adj.account := fa_cache_pkg.fazcbc_record.nbv_retired_loss_acct;
364: end if;
365:
366: if (g_log_level_rec.statement_level) then
367: fa_debug_pkg.add(l_db_title, 'CALL', 'FA_INS_ADJUST_PKG.faxinaj for NBV GAIN/LOSS',