DBA Data[Home] [Help]

APPS.GL_CI_REMOTE_INVOKE_PKG dependencies on FND_CONCURRENT

Line 890: FND_CONCURRENT.GET_REQUEST_STATUS(l_request_id,

886: --+ This should not happen but just in case
887: l_ok_to_post := FALSE;
888: ELSE
889: call_status :=
890: FND_CONCURRENT.GET_REQUEST_STATUS(l_request_id,
891: null,
892: null,
893: rphase,
894: rstatus,

Line 1111: success := fnd_concurrent.wait_for_request(request_id,

1107: message varchar2(240);
1108: success boolean;
1109: begin
1110: if request_id <> 0 then
1111: success := fnd_concurrent.wait_for_request(request_id,
1112: 30, 360000, phase, status, dev_phase, dev_status,
1113: message);
1114: end if;
1115: If dev_phase = 'COMPLETE' AND

Line 1141: success := fnd_concurrent.get_request_status(reqid,

1137: reqid number;
1138: begin
1139: if request_id <> 0 then
1140: reqid := request_id;
1141: success := fnd_concurrent.get_request_status(reqid,
1142: '', '', phase, status, dev_phase, dev_status,
1143: message);
1144: end if;
1145: If dev_phase = 'COMPLETE' AND