DBA Data[Home] [Help]

APPS.FA_MASS_RECLASS_PKG dependencies on FA_LOAD_TBL_PKG

Line 338: FA_LOAD_TBL_PKG.g_deprn_count := 0;

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

Line 343: FA_LOAD_TBL_PKG.Load_Deprn_Rules_Tbl(

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

Line 523: FA_LOAD_TBL_PKG.g_deprn_count := 0;

519: END LOOP;
520:
521: IF (mr_rec.redefault_flag = 'YES') THEN
522: -- Reset g_deprn_count after completing mass reclass transaction.
523: FA_LOAD_TBL_PKG.g_deprn_count := 0;
524: END IF;
525:
526: FND_CONCURRENT.AF_COMMIT;
527:

Line 547: FA_LOAD_TBL_PKG.g_deprn_count := 0;

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

Line 554: FA_LOAD_TBL_PKG.g_deprn_count := 0;

550: WHEN OTHERS THEN
551: fa_srvr_msg.add_sql_error(calling_fn => l_calling_fn
552: ,p_log_level_rec => g_log_level_rec);
553: FND_CONCURRENT.AF_ROLLBACK;
554: FA_LOAD_TBL_PKG.g_deprn_count := 0;
555: x_return_status := 2;
556:
557: END Do_Mass_Reclass;
558: