DBA Data[Home] [Help]

APPS.FV_DC_ASSIGN_FINANCE_CHRG dependencies on FND_CONCURRENT

Line 1132: from fnd_concurrent_programs

1128:
1129: BEGIN
1130: select concurrent_program_id
1131: into v_conc_program_id
1132: from fnd_concurrent_programs
1133: where concurrent_program_name = 'FVXDCACC'
1134: and application_id = 8901;
1135:
1136: EXCEPTION

Line 1149: v_conc_info := fnd_concurrent.get_request_status(v_request_id,

1145: END IF;
1146:
1147: /*
1148: -- get concurrent request id
1149: v_conc_info := fnd_concurrent.get_request_status(v_request_id,
1150: 'FV', 'FVXDCACC', v_phase,
1151: v_status, v_dev_phase, v_dev_status, v_message);
1152: */
1153:

Line 1908: process_status := FND_CONCURRENT.WAIT_FOR_REQUEST(v_auto_id, 20, 0,

1904:
1905: LOOP
1906: commit ; -- Added for Bug 2157100
1907:
1908: process_status := FND_CONCURRENT.WAIT_FOR_REQUEST(v_auto_id, 20, 0,
1909: rphase,rstatus, dphase, dstatus, message);
1910: exit when process_status;
1911:
1912: END LOOP;

Line 1929: from fnd_concurrent_requests

1925: --Bug 6348669
1926: IF (dphase = 'COMPLETE' and dstatus = 'NORMAL') THEN
1927: l_error_cnt := 0;
1928: select count(*) into l_error_cnt
1929: from fnd_concurrent_requests
1930: where parent_request_id = v_auto_id and status_code = 'E';
1931:
1932: IF (l_error_cnt <> 0) THEN
1933: cleanup(v_finchrg_batch_src_id.name);

Line 1971: process_status := FND_CONCURRENT.GET_REQUEST_STATUS(v_auto_id, NULL, NULL,

1967:
1968: /*
1969: LOOP
1970:
1971: process_status := FND_CONCURRENT.GET_REQUEST_STATUS(v_auto_id, NULL, NULL,
1972: rphase, rstatus, dphase, dstatus, message);
1973:
1974: exit when ((process_status and dphase = 'COMPLETE') or NOT(process_status));
1975: dbms_lock.sleep(5);