DBA Data[Home] [Help]

APPS.ZX_ON_DEMAND_TRX_UPGRADE_PKG dependencies on FND_CONCURRENT

Line 66: L_SUB_REQTAB fnd_concurrent.requests_tab_type;

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

Line 184: l_res := FND_CONCURRENT.GET_REQUEST_STATUS

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

Line 421: l_temp := fnd_concurrent.set_completion_status

417:
418: END LOOP;
419:
420: /* X_retcode := CONC_SUCCESS;
421: l_temp := fnd_concurrent.set_completion_status
422: (status => 'NORMAL'
423: ,message => NULL);
424: */
425: EXCEPTION