DBA Data[Home] [Help]

APPS.FA_MASS_DPR_RSV_ADJ_PKG dependencies on FND_CONCURRENT

Line 662: fnd_concurrent.af_commit;

658: if (x_return_status <> FND_API.G_RET_STS_SUCCESS) then
659: raise mass_dpr_rsv_adj_err;
660: else
661: -- commit each succes
662: fnd_concurrent.af_commit;
663: G_success_count := G_success_count + 1;
664: end if;
665:
666: EXCEPTION

Line 687: FND_CONCURRENT.AF_ROLLBACK;

683: -- FA_DEBUG_PKG.dump_debug_messages(max_mesgs => 0);
684:
685: end if;
686: when mass_dpr_rsv_adj_err then
687: FND_CONCURRENT.AF_ROLLBACK;
688: fa_srvr_msg.add_message(calling_fn => l_calling_fn);
689: if (g_log_level_rec.statement_level) then
690: fa_debug_pkg.add(l_calling_fn,'mass_dpr_rsv_adj_err ','');
691:

Line 703: fnd_concurrent.af_rollback;

699: when others then
700: FA_SRVR_MSG.ADD_SQL_ERROR(
701: CALLING_FN => l_calling_fn,
702: p_log_level_rec => g_log_level_rec);
703: fnd_concurrent.af_rollback;
704: if (g_log_level_rec.statement_level) then
705: fa_debug_pkg.add(l_calling_fn,'when others','end of main block in loop');
706:
707: -- Commented for bugfix 4672237

Line 721: fnd_concurrent.af_rollback;

717: when others then
718: FA_SRVR_MSG.ADD_SQL_ERROR(
719: CALLING_FN => l_calling_fn,
720: p_log_level_rec => g_log_level_rec);
721: fnd_concurrent.af_rollback;
722: if (g_log_level_rec.statement_level) then
723: fa_debug_pkg.add(l_calling_fn,'when others','end of process_assets');
724:
725: -- Commented for bugfix 4672237

Line 872: FND_CONCURRENT.AF_COMMIT;

868: fa_debug_pkg.add(l_calling_fn,'Taking job from job queue','');
869: fa_debug_pkg.add(l_calling_fn,'count: ' , l_count);
870: end if;
871:
872: FND_CONCURRENT.AF_COMMIT;
873: END IF;
874:
875: -- -----------------------------------
876: -- There could be rare situations where

Line 933: FND_CONCURRENT.AF_COMMIT;

929: WHERE request_id = p_parent_request_id
930: AND worker_num = p_request_number
931: AND status = 'IN PROCESS';
932:
933: FND_CONCURRENT.AF_COMMIT;
934:
935: -- Handle any exception that occured during
936: -- your child process
937:

Line 951: FND_CONCURRENT.AF_COMMIT;

947: WHERE request_id = p_parent_request_id
948: AND worker_num = p_request_number
949: AND status = 'IN PROCESS';
950:
951: FND_CONCURRENT.AF_COMMIT;
952: Raise error_found;
953:
954: END; -- block
955:

Line 1107: fnd_concurrent.af_commit;

1103: if (g_log_level_rec.statement_level) then
1104: fa_debug_pkg.add(l_calling_fn,'Inserted ' || SQL%ROWCOUNT || ' jobs into FA_WORKER_JOBS table','');
1105: end if;
1106:
1107: fnd_concurrent.af_commit;
1108:
1109: x_return_status := 0;
1110:
1111: EXCEPTION

Line 1113: fnd_concurrent.af_rollback;

1109: x_return_status := 0;
1110:
1111: EXCEPTION
1112: WHEN error_found then
1113: fnd_concurrent.af_rollback;
1114:
1115: -- Commented for bugfix 4672237
1116: -- if (g_log_level_rec.statement_level) then
1117: -- fa_debug_pkg.dump_debug_messages(max_mesgs => 0);

Line 1127: fnd_concurrent.af_rollback;

1123: WHEN OTHERS THEN
1124: FA_SRVR_MSG.ADD_SQL_ERROR(
1125: CALLING_FN => l_calling_fn,
1126: p_log_level_rec => g_log_level_rec);
1127: fnd_concurrent.af_rollback;
1128:
1129: -- Commented for bugfix 4672237
1130: -- if (g_log_level_rec.statement_level) then
1131: -- fa_debug_pkg.dump_debug_messages(max_mesgs => 0);