DBA Data[Home] [Help]

APPS.AP_APPROVAL_PKG dependencies on FND_CONCURRENT

Line 7231: FROM fnd_concurrent_requests fcr

7227: SET validation_request_id = NULL
7228: WHERE validation_request_id IS NOT NULL
7229: AND EXISTS
7230: ( SELECT 'Request Completed'
7231: FROM fnd_concurrent_requests fcr
7232: WHERE fcr.request_id = api.validation_request_id
7233: AND fcr.phase_code = 'C' );
7234:
7235: ---------------------------------------------------------------------

Line 7589: --bug 7512258 removed call to FND_CONCURRENT.SET_COMPLETION_STATUS

7585: Print_Debug (l_api_name, 'Set Concurrent Request Warning');
7586: ---------------------------------------------------------------------
7587:
7588: l_conc_status := 'WARNING';
7589: --bug 7512258 removed call to FND_CONCURRENT.SET_COMPLETION_STATUS
7590:
7591: ---------------------------------------------------------------------
7592: Print_Debug (l_api_name, 'Begin Single Mode');
7593: ---------------------------------------------------------------------

Line 7862: --bug 7512258 removed call to FND_CONCURRENT.SET_COMPLETION_STATUS

7858: Print_Debug (l_api_name, 'Set Concurrent Request Warning');
7859: ---------------------------------------------------------------------
7860:
7861: l_conc_status := 'WARNING';
7862: --bug 7512258 removed call to FND_CONCURRENT.SET_COMPLETION_STATUS
7863:
7864: ---------------------------------------------------------------------
7865: Print_Debug (l_api_name, 'Begin Single Mode');
7866: ---------------------------------------------------------------------

Line 8108: l_set_status := FND_CONCURRENT.SET_COMPLETION_STATUS(l_conc_status,l_errbuf);

8104: Print_Debug (l_api_name, 'Set Concurrent Request Warning');
8105: ---------------------------------------------------------------------
8106: IF l_conc_status = 'WARNING' THEN
8107: l_errbuf := 'Warning/Error message to be displayed';
8108: l_set_status := FND_CONCURRENT.SET_COMPLETION_STATUS(l_conc_status,l_errbuf);
8109: END IF;
8110:
8111:
8112: ---------------------------------------------------------------------