DBA Data[Home] [Help]

APPS.AD_ZD_ADOP dependencies on FND_CONC

Line 157: c_ret := FND_CONCURRENT.get_request_status(request_id => c_reqid,

153: /*
154: * Check is there any CP request already submitted
155: */
156:
157: c_ret := FND_CONCURRENT.get_request_status(request_id => c_reqid,
158: appl_shortname => 'AD',
159: program => 'ADZDPATCH',
160: phase => l_phase,
161: status => l_status,

Line 228: FND_CONC.manager_check(req_id => c_reqid,

224: * since we know other managers are currently running (see above).
225: */
226: l_mgr_running := TRUE;
227:
228: FND_CONC.manager_check(req_id => c_reqid,
229: cd_id => null,
230: mgr_defined => l_defined,
231: mgr_active => l_active,
232: mgr_workshift => l_workshift,

Line 251: c_ret := FND_CONCURRENT.get_request_status(request_id => c_reqid,

247: * So now let's check the status of ADZDPATCH conc pgm.
248: */
249: l_dev_phase := null;
250:
251: c_ret := FND_CONCURRENT.get_request_status(request_id => c_reqid,
252: appl_shortname => 'AD',
253: program => 'ADZDPATCH',
254: phase => l_phase,
255: status => l_status,

Line 643: FND_CONC.DIAGNOSE(c_reqid, l_phase, l_status, l_diag);

639: -- Hence needs to call Apps_Initialize
640: FND_GLOBAL.Apps_Initialize(0, 20420, 1);
641:
642: c_reqid := REQID;
643: FND_CONC.DIAGNOSE(c_reqid, l_phase, l_status, l_diag);
644:
645: return l_diag;
646:
647: END GET_ADZDPATCH_STATUS;

Line 1368: if(fnd_conc.icm_alive(false)) then

1364:
1365: FUNCTION IS_ICM_ALIVE RETURN NUMBER
1366: IS
1367: BEGIN
1368: if(fnd_conc.icm_alive(false)) then
1369: return 1;
1370: else
1371: return 0;
1372: end if;