DBA Data[Home] [Help]

APPS.CN_SCA_CREDITS_BATCH_PUB dependencies on FND_CONCURRENT

Line 221: fnd_concurrent.get_request_status(

217:
218: WHILE l_completed_batch_count <= x_batch_total LOOP
219: IF l_primary_request_stack(primary_ptr) IS NOT NULL THEN
220: l_call_status :=
221: fnd_concurrent.get_request_status(
222: request_id => l_primary_request_stack(primary_ptr)
223: , phase => l_dummy
224: , status => l_dummy
225: , dev_phase => l_dev_phase

Line 284: conc_status := fnd_concurrent.set_completion_status(status => 'ERROR', MESSAGE => '');

280: WHEN NO_DATA_FOUND THEN
281: debugmsg('SCA : Conc_Dispatch : no rows for process ' || x_transaction_source);
282: WHEN conc_fail THEN
283: debugmsg('SCA : Conc_Dispatch : Exception conc_fail');
284: conc_status := fnd_concurrent.set_completion_status(status => 'ERROR', MESSAGE => '');
285: RAISE;
286: WHEN OTHERS THEN
287: debugmsg('SCA : Conc_Dispatch : Unexpected Exception');
288: RAISE;

Line 819: conc_status := fnd_concurrent.set_completion_status(status => 'ERROR', MESSAGE => '');

815: EXCEPTION
816: WHEN no_trx THEN
817: debugmsg('Get Sales Credits : No input transactions found for Rules Engine Processing');
818: debugmsg('Get Sales Credits : Rules Engine Processing ended with errors');
819: conc_status := fnd_concurrent.set_completion_status(status => 'ERROR', MESSAGE => '');
820: cn_message_pkg.end_batch(l_process_audit_id);
821: WHEN no_rule_ex THEN
822: debugmsg('Get Sales Credits : No Credit Rules found for Rules Engine Processing');
823: debugmsg('Get Sales Credits : Rules Engine Processing ended with errors');

Line 824: conc_status := fnd_concurrent.set_completion_status(status => 'ERROR', MESSAGE => '');

820: cn_message_pkg.end_batch(l_process_audit_id);
821: WHEN no_rule_ex THEN
822: debugmsg('Get Sales Credits : No Credit Rules found for Rules Engine Processing');
823: debugmsg('Get Sales Credits : Rules Engine Processing ended with errors');
824: conc_status := fnd_concurrent.set_completion_status(status => 'ERROR', MESSAGE => '');
825: cn_message_pkg.end_batch(l_process_audit_id);
826: WHEN index_ex THEN
827: debugmsg('Get Sales Credits : Error occured while creating indexes dynamically');
828: debugmsg('Get Sales Credits : Rules Engine Processing ended with errors');

Line 829: conc_status := fnd_concurrent.set_completion_status(status => 'ERROR', MESSAGE => '');

825: cn_message_pkg.end_batch(l_process_audit_id);
826: WHEN index_ex THEN
827: debugmsg('Get Sales Credits : Error occured while creating indexes dynamically');
828: debugmsg('Get Sales Credits : Rules Engine Processing ended with errors');
829: conc_status := fnd_concurrent.set_completion_status(status => 'ERROR', MESSAGE => '');
830: cn_message_pkg.end_batch(l_process_audit_id);
831: WHEN OTHERS THEN
832: debugmsg('Get Sales Credits : Unexpected exception');
833: debugmsg('Get Sales Credits : Oracle Error: ' || SQLERRM);

Line 835: conc_status := fnd_concurrent.set_completion_status(status => 'ERROR', MESSAGE => '');

831: WHEN OTHERS THEN
832: debugmsg('Get Sales Credits : Unexpected exception');
833: debugmsg('Get Sales Credits : Oracle Error: ' || SQLERRM);
834: debugmsg('Get Sales Credits : Rules Engine Processing ended with errors');
835: conc_status := fnd_concurrent.set_completion_status(status => 'ERROR', MESSAGE => '');
836: cn_message_pkg.end_batch(l_process_audit_id);
837: END get_sales_credits;
838:
839: --