DBA Data[Home] [Help]

APPS.FA_DEFERRED_DEPRN_PKG dependencies on FA_CACHE_PKG

Line 190: if NOT fa_cache_pkg.fazcbc(X_book => p_tax_book) then

186: 'Beginning of procedure');
187: END IF;
188:
189: -- call the book_controls cache
190: if NOT fa_cache_pkg.fazcbc(X_book => p_tax_book) then
191: raise error_found;
192: end if;
193:
194: l_batch_size := nvl(fa_cache_pkg.fa_batch_size, 200);

Line 194: l_batch_size := nvl(fa_cache_pkg.fa_batch_size, 200);

190: if NOT fa_cache_pkg.fazcbc(X_book => p_tax_book) then
191: raise error_found;
192: end if;
193:
194: l_batch_size := nvl(fa_cache_pkg.fa_batch_size, 200);
195:
196: -- The deferred deprn exp acct of primary book is the same as the
197: -- reporting book. No need to enable MRC
198: select deferred_deprn_expense_acct

Line 415: l_sob_tbl FA_CACHE_PKG.fazcrsob_sob_tbl_type;

411: l_asset_id_tbl FA_XLA_EVENTS_PVT.number_tbl_type;
412: l_rowid_tbl rowid_tbl_type;
413: l_event_id_tbl FA_XLA_EVENTS_PVT.number_tbl_type;
414:
415: l_sob_tbl FA_CACHE_PKG.fazcrsob_sob_tbl_type;
416:
417: cursor c_deferred_events is
418: select asset_id, min(rowid)
419: from fa_deferred_deprn

Line 455: l_batch_size := nvl(fa_cache_pkg.fa_batch_size, 200);

451: G_MODULE_NAME||l_procedure_name||'.begin',
452: 'Beginning of procedure');
453: END IF;
454:
455: l_batch_size := nvl(fa_cache_pkg.fa_batch_size, 200);
456:
457: if not FA_UTIL_PVT.get_period_rec
458: (p_book => p_corp_book,
459: p_period_counter => p_corp_period_counter,

Line 587: if not FA_CACHE_PKG.fazcrsob

583:
584: close c_deferred_events;
585:
586: -- now find any mrc rows which are not processed yet and update
587: if not FA_CACHE_PKG.fazcrsob
588: (x_book_type_code => p_corp_book,
589: x_sob_tbl => l_sob_tbl) then
590: raise error_found;
591: end if;

Line 775: if not fa_cache_pkg.fazcbc(X_book => p_tax_book_type_code) then

771: G_MODULE_NAME||l_procedure_name||'.begin',
772: 'Beginning of procedure');
773: END IF;
774:
775: if not fa_cache_pkg.fazcbc(X_book => p_tax_book_type_code) then
776: raise error_found;
777: end if;
778:
779: IF (G_LEVEL_STATEMENT >= G_CURRENT_RUNTIME_LEVEL ) THEN

Line 797: fa_cache_pkg.fazcbc_record.distribution_source_book

793: select period_counter
794: into l_corp_period_counter
795: from fa_deprn_periods
796: where book_type_code =
797: fa_cache_pkg.fazcbc_record.distribution_source_book
798: and period_name = p_corp_period_name;
799:
800: exception
801: when others then

Line 810: if not fa_cache_pkg.fazcsob

806:
807: fnd_profile.put('GL_SET_OF_BKS_ID', c_rec.set_of_books_id);
808: fnd_client_info.set_currency_context (c_rec.set_of_books_id);
809:
810: if not fa_cache_pkg.fazcsob
811: (X_set_of_books_id => c_rec.set_of_books_id,
812: X_mrc_sob_type_code => l_reporting_flag
813: ) then
814: raise error_found;

Line 824: (p_corp_book => fa_cache_pkg.fazcbc_record.distribution_source_book,

820: 'calling deferred_deprn');
821: END IF;
822:
823: deferred_deprn
824: (p_corp_book => fa_cache_pkg.fazcbc_record.distribution_source_book,
825: p_tax_book => p_tax_book_type_code,
826: p_corp_period_ctr => l_corp_period_counter,
827: p_tax_period_ctr => l_tax_period_counter,
828: p_mrc_sob_type_code => l_reporting_flag);

Line 841: p_corp_book => fa_cache_pkg.fazcbc_record.distribution_source_book,

837:
838: -- now process the events
839: create_bulk_deferred_events
840: (p_tax_book => p_tax_book_type_code,
841: p_corp_book => fa_cache_pkg.fazcbc_record.distribution_source_book,
842: p_tax_period_counter => l_tax_period_counter,
843: p_corp_period_counter => l_corp_period_counter);
844:
845: IF (G_LEVEL_PROCEDURE >= G_CURRENT_RUNTIME_LEVEL ) THEN