DBA Data[Home] [Help]

APPS.GL_CI_REMOTE_INVOKE_PKG dependencies on FND_CONCURRENT

Line 895: FND_CONCURRENT.GET_REQUEST_STATUS(l_request_id,

891: --+ This should not happen but just in case
892: l_ok_to_post := FALSE;
893: ELSE
894: call_status :=
895: FND_CONCURRENT.GET_REQUEST_STATUS(l_request_id,
896: null,
897: null,
898: rphase,
899: rstatus,

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

1112: message varchar2(240);
1113: success boolean;
1114: begin
1115: if request_id <> 0 then
1116: success := fnd_concurrent.wait_for_request(request_id,
1117: 30, 360000, phase, status, dev_phase, dev_status,
1118: message);
1119: end if;
1120: If dev_phase = 'COMPLETE' AND

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

1142: reqid number;
1143: begin
1144: if request_id <> 0 then
1145: reqid := request_id;
1146: success := fnd_concurrent.get_request_status(reqid,
1147: '', '', phase, status, dev_phase, dev_status,
1148: message);
1149: end if;
1150: If dev_phase = 'COMPLETE' AND