DBA Data[Home] [Help]

APPS.FND_CONC_WEB_UTIL dependencies on FND_CONCURRENT

Line 43: l_result := FND_CONCURRENT.GET_REQUEST_STATUS(

39: l_image_name := '';
40: l_request_id := P_REQUEST_ID;
41:
42: -- To get the request's pahse and status
43: l_result := FND_CONCURRENT.GET_REQUEST_STATUS(
44: REQUEST_ID => l_request_id,
45: PHASE => l_phase,
46: STATUS => l_status,
47: DEV_PHASE => l_dev_phase,

Line 63: select nvl(sum(running_processes),0) into v_running_processes from fnd_concurrent_worker_requests where

59: --modified the query as there could be zero or more than 1 rows of managers
60: --as the request could be waiting in multiple managers queue
61:
62:
63: select nvl(sum(running_processes),0) into v_running_processes from fnd_concurrent_worker_requests where
64: (CONTROL_CODE not in ('D', 'T', 'E', 'X', 'R', 'N') OR CONTROL_CODE is NULL)
65: and request_id=P_REQUEST_ID;
66:
67: IF (l_dev_phase = 'PENDING') THEN

Line 146: l_result := FND_CONCURRENT.GET_REQUEST_STATUS(

142: if(nvl(l_request_id,0)=0) then
143: return null;
144: end if;
145:
146: l_result := FND_CONCURRENT.GET_REQUEST_STATUS(
147: REQUEST_ID => l_request_id,
148: PHASE => l_phase,
149: STATUS => l_status,
150: DEV_PHASE => l_dev_phase,