DBA Data[Home] [Help]

APPS.FA_MASS_RECLASS_PKG dependencies on FA_LOAD_TBL_PKG

Line 337: FA_LOAD_TBL_PKG.g_deprn_count := 0;

333: ===========================================================================*/
334: IF (mr_rec.redefault_flag = 'YES') THEN
335: -- Depreciation rules will be redefaulted.
336: -- Reset g_deprn_count before initiating mass reclass transaction.
337: FA_LOAD_TBL_PKG.g_deprn_count := 0;
338:
339: -- Load depreciation rules table for the corporate book and all the
340: -- associated tax books for the new category.
341: -- Simulates caching effect.

Line 342: FA_LOAD_TBL_PKG.Load_Deprn_Rules_Tbl(

338:
339: -- Load depreciation rules table for the corporate book and all the
340: -- associated tax books for the new category.
341: -- Simulates caching effect.
342: FA_LOAD_TBL_PKG.Load_Deprn_Rules_Tbl(
343: p_corp_book => mr_rec.book_type_code,
344: p_category_id => mr_rec.to_category_id,
345: x_return_status => l_status, p_log_level_rec => g_log_level_rec);
346: IF NOT l_status THEN

Line 517: FA_LOAD_TBL_PKG.g_deprn_count := 0;

513: END LOOP;
514:
515: IF (mr_rec.redefault_flag = 'YES') THEN
516: -- Reset g_deprn_count after completing mass reclass transaction.
517: FA_LOAD_TBL_PKG.g_deprn_count := 0;
518: END IF;
519:
520: FND_CONCURRENT.AF_COMMIT;
521:

Line 540: FA_LOAD_TBL_PKG.g_deprn_count := 0;

536:
537: WHEN mrcl_failure THEN
538: fa_srvr_msg.add_message(calling_fn => l_calling_fn, p_log_level_rec => g_log_level_rec);
539: FND_CONCURRENT.AF_ROLLBACK;
540: FA_LOAD_TBL_PKG.g_deprn_count := 0;
541: x_return_status := 2;
542:
543: WHEN OTHERS THEN
544: fa_srvr_msg.add_sql_error(calling_fn => l_calling_fn, p_log_level_rec => g_log_level_rec);

Line 546: FA_LOAD_TBL_PKG.g_deprn_count := 0;

542:
543: WHEN OTHERS THEN
544: fa_srvr_msg.add_sql_error(calling_fn => l_calling_fn, p_log_level_rec => g_log_level_rec);
545: FND_CONCURRENT.AF_ROLLBACK;
546: FA_LOAD_TBL_PKG.g_deprn_count := 0;
547: x_return_status := 2;
548:
549: END Do_Mass_Reclass;
550: