DBA Data[Home] [Help]

APPS.MSD_CL_PRE_PROCESS dependencies on FND_CONC_GLOBAL

Line 8566: lv_req_data := nvl(fnd_conc_global.request_data,G_NEW_REQUEST);

8562: lv_req_data VARCHAR2(10);
8563:
8564: BEGIN
8565:
8566: lv_req_data := nvl(fnd_conc_global.request_data,G_NEW_REQUEST);
8567:
8568: -- If "Level Values' is already submitted as a sub-request then concurrent request
8569: -- would have been submitted for all the entities within this if clause.
8570:

Line 8579: fnd_conc_global.set_req_globals(conc_status => 'PAUSED',

8575:
8576: IF lv_request_id = 0 THEN
8577: RAISE ex_launch_fail;
8578: END IF;
8579: fnd_conc_global.set_req_globals(conc_status => 'PAUSED',
8580: request_data => to_char(G_DP_LV_REQ_DATA));
8581: lv_req_data := 2;
8582: END IF;
8583:

Line 8692: fnd_conc_global.set_req_globals(conc_status => 'RUNNING',

8688: -- Only for level values sub-request, monitor needs to wait till the processing of
8689: -- level values. If the request data value is already set to 'DP Level Values -- sub-request', it is modified to 'DP custom stream sub-request', so that monitor -- continues with the processing.
8690:
8691: IF lv_req_data = G_DP_LV_REQ_DATA THEN
8692: fnd_conc_global.set_req_globals(conc_status => 'RUNNING',
8693: request_data => to_char(G_DP_CS_REQ_DATA));
8694: END IF;
8695: EXCEPTION
8696: WHEN ex_launch_fail THEN