DBA Data[Home] [Help]

APPS.FA_MASS_REVAL_PKG dependencies on FND_CONCURRENT

Line 565: FND_CONCURRENT.AF_ROLLBACK;

561: end if;
562:
563: EXCEPTION
564: when reval_err then
565: FND_CONCURRENT.AF_ROLLBACK;
566:
567: l_process_status(l_loop_count) := 'FAILURE';
568: x_failure_count := x_failure_count + 1;
569:

Line 578: FND_CONCURRENT.AF_ROLLBACK;

574: fa_debug_pkg.dump_debug_messages(max_mesgs => 0, p_log_level_rec => g_log_level_rec);
575: end if;
576:
577: when others then
578: FND_CONCURRENT.AF_ROLLBACK;
579:
580: l_process_status(l_loop_count) := 'FAILURE';
581: x_failure_count := x_failure_count + 1;
582:

Line 595: -- FND_CONCURRENT.AF_COMMIT each record

591: end if;
592:
593: END;
594:
595: -- FND_CONCURRENT.AF_COMMIT each record
596: FND_CONCURRENT.AF_COMMIT;
597:
598: fa_debug_pkg.add(l_calling_fn,
599: 'asset_id : ', l_asset_id(l_asset_id.count));

Line 596: FND_CONCURRENT.AF_COMMIT;

592:
593: END;
594:
595: -- FND_CONCURRENT.AF_COMMIT each record
596: FND_CONCURRENT.AF_COMMIT;
597:
598: fa_debug_pkg.add(l_calling_fn,
599: 'asset_id : ', l_asset_id(l_asset_id.count));
600: fa_debug_pkg.add(l_calling_fn,

Line 635: FND_CONCURRENT.AF_ROLLBACK;

631: when done_exc then
632: x_return_status := 0;
633:
634: when massrvl_err then
635: FND_CONCURRENT.AF_ROLLBACK;
636: if (g_log_level_rec.statement_level) then
637: fa_debug_pkg.add(l_calling_fn, 'in massrvl_err main', '', p_log_level_rec => g_log_level_rec);
638: end if;
639:

Line 651: FND_CONCURRENT.AF_ROLLBACK;

647: write_preview_messages;
648: end if;
649:
650: when others then
651: FND_CONCURRENT.AF_ROLLBACK;
652:
653: if (g_log_level_rec.statement_level) then
654: fa_debug_pkg.add(l_calling_fn, 'in massrvl_err when otherx', '', p_log_level_rec => g_log_level_rec);
655: end if;

Line 1112: FND_CONCURRENT.AF_COMMIT;

1108: FROM fa_parallel_workers pw
1109: WHERE pw.request_id = p_parent_request_id
1110: AND pw.asset_id = ad.asset_id);
1111:
1112: FND_CONCURRENT.AF_COMMIT;
1113:
1114: X_return_status := 0;
1115:
1116: EXCEPTION

Line 1118: FND_CONCURRENT.AF_ROLLBACK;

1114: X_return_status := 0;
1115:
1116: EXCEPTION
1117: WHEN massrvl_err THEN
1118: FND_CONCURRENT.AF_ROLLBACK;
1119: fa_srvr_msg.add_message (calling_fn => l_calling_fn, p_log_level_rec => g_log_level_rec);
1120: X_return_status := 2;
1121:
1122: WHEN OTHERS THEN

Line 1123: FND_CONCURRENT.AF_ROLLBACK;

1119: fa_srvr_msg.add_message (calling_fn => l_calling_fn, p_log_level_rec => g_log_level_rec);
1120: X_return_status := 2;
1121:
1122: WHEN OTHERS THEN
1123: FND_CONCURRENT.AF_ROLLBACK;
1124: fa_srvr_msg.add_sql_error (calling_fn => l_calling_fn, p_log_level_rec => g_log_level_rec);
1125: x_return_status := 2;
1126:
1127: END allocate_workers;