DBA Data[Home] [Help]

APPS.FA_MASS_DPR_RSV_ADJ_PKG dependencies on FND_CONCURRENT

Line 673: fnd_concurrent.af_commit;

669: if (x_return_status <> FND_API.G_RET_STS_SUCCESS) then
670: raise mass_dpr_rsv_adj_err;
671: else
672: -- commit each succes
673: fnd_concurrent.af_commit;
674: G_success_count := G_success_count + 1;
675: end if;
676:
677: EXCEPTION

Line 699: FND_CONCURRENT.AF_ROLLBACK;

695: -- FA_DEBUG_PKG.dump_debug_messages(max_mesgs => 0);
696:
697: end if;
698: when mass_dpr_rsv_adj_err then
699: FND_CONCURRENT.AF_ROLLBACK;
700: fa_srvr_msg.add_message(calling_fn => l_calling_fn);
701: if (g_log_level_rec.statement_level) then
702: fa_debug_pkg.add(l_calling_fn,'mass_dpr_rsv_adj_err','',g_log_level_rec);
703:

Line 715: fnd_concurrent.af_rollback;

711: when others then
712: FA_SRVR_MSG.ADD_SQL_ERROR(
713: CALLING_FN => l_calling_fn,
714: p_log_level_rec => g_log_level_rec);
715: fnd_concurrent.af_rollback;
716: if (g_log_level_rec.statement_level) then
717: fa_debug_pkg.add(l_calling_fn,'when others','end of main block in loop',g_log_level_rec);
718:
719: -- Commented for bugfix 4672237

Line 733: fnd_concurrent.af_rollback;

729: when others then
730: FA_SRVR_MSG.ADD_SQL_ERROR(
731: CALLING_FN => l_calling_fn,
732: p_log_level_rec => g_log_level_rec);
733: fnd_concurrent.af_rollback;
734: if (g_log_level_rec.statement_level) then
735: fa_debug_pkg.add(l_calling_fn,'when others','end of process_assets', g_log_level_rec);
736:
737: -- Commented for bugfix 4672237

Line 884: FND_CONCURRENT.AF_COMMIT;

880: fa_debug_pkg.add(l_calling_fn,'Taking job from job queue','');
881: fa_debug_pkg.add(l_calling_fn,'count: ' , l_count);
882: end if;
883:
884: FND_CONCURRENT.AF_COMMIT;
885: END IF;
886:
887: -- -----------------------------------
888: -- There could be rare situations where

Line 945: FND_CONCURRENT.AF_COMMIT;

941: WHERE request_id = p_parent_request_id
942: AND worker_num = p_request_number
943: AND status = 'IN PROCESS';
944:
945: FND_CONCURRENT.AF_COMMIT;
946:
947: -- Handle any exception that occured during
948: -- your child process
949:

Line 963: FND_CONCURRENT.AF_COMMIT;

959: WHERE request_id = p_parent_request_id
960: AND worker_num = p_request_number
961: AND status = 'IN PROCESS';
962:
963: FND_CONCURRENT.AF_COMMIT;
964: Raise error_found;
965:
966: END; -- block
967:

Line 1119: fnd_concurrent.af_commit;

1115: if (g_log_level_rec.statement_level) then
1116: fa_debug_pkg.add(l_calling_fn,'Inserted ' || SQL%ROWCOUNT || ' jobs into FA_WORKER_JOBS table','');
1117: end if;
1118:
1119: fnd_concurrent.af_commit;
1120:
1121: x_return_status := 0;
1122:
1123: EXCEPTION

Line 1125: fnd_concurrent.af_rollback;

1121: x_return_status := 0;
1122:
1123: EXCEPTION
1124: WHEN error_found then
1125: fnd_concurrent.af_rollback;
1126:
1127: -- Commented for bugfix 4672237
1128: -- if (g_log_level_rec.statement_level) then
1129: -- fa_debug_pkg.dump_debug_messages(max_mesgs => 0);

Line 1139: fnd_concurrent.af_rollback;

1135: WHEN OTHERS THEN
1136: FA_SRVR_MSG.ADD_SQL_ERROR(
1137: CALLING_FN => l_calling_fn,
1138: p_log_level_rec => g_log_level_rec);
1139: fnd_concurrent.af_rollback;
1140:
1141: -- Commented for bugfix 4672237
1142: -- if (g_log_level_rec.statement_level) then
1143: -- fa_debug_pkg.dump_debug_messages(max_mesgs => 0);