DBA Data[Home] [Help]

APPS.ZX_ON_DEMAND_TRX_UPGRADE_PKG dependencies on FND_CONCURRENT

Line 65: L_SUB_REQTAB fnd_concurrent.requests_tab_type;

61: req_status number;
62: req_data varchar2(10);
63: strt_wrkr number;
64: submit_req boolean;
65: L_SUB_REQTAB fnd_concurrent.requests_tab_type;
66:
67: TYPE WorkerList IS TABLE OF NUMBER INDEX BY BINARY_INTEGER;
68: l_worker WorkerList;
69:

Line 183: l_res := FND_CONCURRENT.GET_REQUEST_STATUS

179: END IF;
180:
181: l_worker_not_complete := FALSE;
182: FOR i in 1..X_Num_Workers LOOP
183: l_res := FND_CONCURRENT.GET_REQUEST_STATUS
184: (l_worker(i),
185: NULL,
186: NULL,
187: l_phase,

Line 417: l_temp := fnd_concurrent.set_completion_status

413:
414: END LOOP;
415:
416: /* X_retcode := CONC_SUCCESS;
417: l_temp := fnd_concurrent.set_completion_status
418: (status => 'NORMAL'
419: ,message => NULL);
420: */
421: EXCEPTION