DBA Data[Home] [Help]

APPS.FA_MASSTFR_PKG dependencies on FND_CONCURRENT

Line 474: FND_CONCURRENT.AF_ROLLBACK;

470:
471: EXCEPTION
472: when mtfr_err then
473: --dbms_output.put_line('when mtfr_err');
474: FND_CONCURRENT.AF_ROLLBACK;
475: if (g_log_level_rec.statement_level) then
476: fa_debug_pkg.dump_debug_messages(max_mesgs => 0, p_log_level_rec => g_log_level_rec);
477: end if;
478: x_failure_count := x_failure_count + 1;

Line 488: FND_CONCURRENT.AF_ROLLBACK;

484: p_log_level_rec => g_log_level_rec);
485:
486: when others then
487: --dbms_output.put_line('when others');
488: FND_CONCURRENT.AF_ROLLBACK;
489: if (g_log_level_rec.statement_level) then
490: fa_debug_pkg.dump_debug_messages(max_mesgs => 0, p_log_level_rec => g_log_level_rec);
491: end if;
492: x_failure_count := x_failure_count + 1;

Line 501: -- FND_CONCURRENT.AF_COMMIT each record

497: value1 => l_asset_number(l_count),
498: p_log_level_rec => g_log_level_rec);
499: END;
500:
501: -- FND_CONCURRENT.AF_COMMIT each record
502: FND_CONCURRENT.AF_COMMIT;
503:
504: end loop; -- main bulk fetch loop
505:

Line 502: FND_CONCURRENT.AF_COMMIT;

498: p_log_level_rec => g_log_level_rec);
499: END;
500:
501: -- FND_CONCURRENT.AF_COMMIT each record
502: FND_CONCURRENT.AF_COMMIT;
503:
504: end loop; -- main bulk fetch loop
505:
506: --dbms_output.put_line('after loop');

Line 525: FND_CONCURRENT.AF_ROLLBACK;

521: end if;
522:
523: when masstfr_err then
524: --dbms_output.put_line('when masstfr_err 2');
525: FND_CONCURRENT.AF_ROLLBACK;
526: fa_srvr_msg.add_message(calling_fn => l_calling_fn, p_log_level_rec => g_log_level_rec);
527: if (g_log_level_rec.statement_level) then
528: FA_DEBUG_PKG.dump_debug_messages(max_mesgs => 0, p_log_level_rec => g_log_level_rec);
529: end if;

Line 534: FND_CONCURRENT.AF_ROLLBACK;

530: x_return_status := 2;
531:
532: when others then
533: --dbms_output.put_line('when others then');
534: FND_CONCURRENT.AF_ROLLBACK;
535: fa_srvr_msg.add_sql_error(calling_fn => l_calling_fn, p_log_level_rec => g_log_level_rec);
536: x_return_status := 2;
537:
538: END do_mass_transfer;