DBA Data[Home] [Help]

APPS.PAY_BALANCE_FEED_DEL_PKG dependencies on FND_CONCURRENT

Line 557: L_SUB_REQTAB fnd_concurrent.requests_tab_type;

553: l_status_code varchar2(80);
554: l_dev_phase varchar2(15);
555: l_message varchar2(255);
556:
557: L_SUB_REQTAB fnd_concurrent.requests_tab_type;
558: req_data varchar2(10);
559: submit_req boolean;
560:
561: PAY_UPGRADE_RUNNING exception;

Line 690: l_sub_reqtab := fnd_concurrent.get_sub_requests(fnd_global.conc_request_id);

686: end;
687: end if;
688: else
689:
690: l_sub_reqtab := fnd_concurrent.get_sub_requests(fnd_global.conc_request_id);
691:
692: x_retcode := FND_API.G_RET_STS_SUCCESS;
693:
694: for i IN 1..l_sub_reqtab.COUNT()

Line 712: l_conc_status:=FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',X_errbuf);

708: EXCEPTION
709: WHEN submit_conc_failed THEN
710: X_retcode := FND_API.g_ret_sts_unexp_error;
711: X_errbuf:=l_module||'.'||l_stmt_num||': Submit concurrent request failed.';
712: l_conc_status:=FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',X_errbuf);
713:
714: WHEN fnd_api.g_exc_unexpected_error THEN
715: X_retcode := FND_API.g_ret_sts_unexp_error;
716:

Line 718: l_conc_status:=FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',X_errbuf);

714: WHEN fnd_api.g_exc_unexpected_error THEN
715: X_retcode := FND_API.g_ret_sts_unexp_error;
716:
717: X_errbuf:=l_module||'.'||l_stmt_num||': An exception has occurred.';
718: l_conc_status:=FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',X_errbuf);
719:
720: WHEN fnd_api.g_exc_error THEN
721: X_retcode := FND_API.g_ret_sts_error;
722:

Line 724: l_conc_status:=FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',X_errbuf);

720: WHEN fnd_api.g_exc_error THEN
721: X_retcode := FND_API.g_ret_sts_error;
722:
723: X_errbuf:=l_module||'.'||l_stmt_num||': '|| SQLERRM;
724: l_conc_status:=FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',X_errbuf);
725:
726: WHEN OTHERS THEN
727: X_retcode := FND_API.g_ret_sts_unexp_error;
728: X_errbuf:=l_module||'.'||l_stmt_num||': '|| SQLERRM;

Line 729: l_conc_status:=FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',X_errbuf);

725:
726: WHEN OTHERS THEN
727: X_retcode := FND_API.g_ret_sts_unexp_error;
728: X_errbuf:=l_module||'.'||l_stmt_num||': '|| SQLERRM;
729: l_conc_status:=FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',X_errbuf);
730:
731: END Delete_Proc_PAY_MGR;
732:
733: ----------------------------------------------------------------------------------------

Line 876: l_conc_status:=FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',X_errbuf);

872: EXCEPTION
873: WHEN update_exception THEN
874: ROLLBACK;
875: X_errbuf:=l_module||'.'||l_stmt_num||': '|| SQLERRM;
876: l_conc_status:=FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',X_errbuf);
877:
878: WHEN fnd_api.g_exc_unexpected_error THEN
879: ROLLBACK;
880: X_retcode := FND_API.g_ret_sts_unexp_error;

Line 882: l_conc_status:=FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',X_errbuf);

878: WHEN fnd_api.g_exc_unexpected_error THEN
879: ROLLBACK;
880: X_retcode := FND_API.g_ret_sts_unexp_error;
881: X_errbuf:=l_module||'.'||l_stmt_num||': An exception has occurred.';
882: l_conc_status:=FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',X_errbuf);
883:
884: WHEN fnd_api.g_exc_error THEN
885: ROLLBACK;
886: X_retcode := FND_API.g_ret_sts_error;

Line 888: l_conc_status:=FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',X_errbuf);

884: WHEN fnd_api.g_exc_error THEN
885: ROLLBACK;
886: X_retcode := FND_API.g_ret_sts_error;
887: X_errbuf:=l_module||'.'||l_stmt_num||': '|| SQLERRM;
888: l_conc_status:=FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',X_errbuf);
889:
890: WHEN OTHERS THEN
891: ROLLBACK;
892: X_retcode := FND_API.g_ret_sts_unexp_error;

Line 894: l_conc_status:=FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',X_errbuf);

890: WHEN OTHERS THEN
891: ROLLBACK;
892: X_retcode := FND_API.g_ret_sts_unexp_error;
893: X_errbuf:=l_module||'.'||l_stmt_num||': '|| SQLERRM;
894: l_conc_status:=FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',X_errbuf);
895:
896: END Delete_Proc_PAY_WKR;
897:
898: -------------------------------------------------------------------------------------