DBA Data[Home] [Help]

APPS.FND_REQUEST_SET dependencies on FND_CONC_GLOBAL

Line 75: req_data := fnd_conc_global.request_data;

71: tmp_buf varchar2(240);
72:
73: begin
74: /* Get state from last run if any. */
75: req_data := fnd_conc_global.request_data;
76: conc_req_id := fnd_global.conc_request_id();
77: restart_flag := 0;
78:
79: /*Bug 5680669 -START-*/

Line 307: fnd_conc_global.set_req_globals( request_data =>

303: end if;
304: fnd_message.set_token('OUTCOME', outcome_meaning);
305: fnd_message.set_token('STAGE', user_stage_name);
306: errbuf := substr(fnd_message.get, 1, 240);
307: fnd_conc_global.set_req_globals( request_data =>
308: substrb( 'C,' || to_char(error_stage_id) || ',' || to_char(stage_id) || ',' ||
309: to_char(req_id) || ',' ||
310: critical_outcome, 1, 240));
311:

Line 357: fnd_conc_global.set_req_globals(

353: else
354: update fnd_concurrent_requests set RUN_NUMBER =
355: (select RUN_NUMBER from fnd_concurrent_requests where request_id = conc_req_id)
356: where request_id = req_id;
357: fnd_conc_global.set_req_globals(
358: conc_status => 'PAUSED',
359: request_data => runinfo_id||','||to_char(error_stage_id)||','||substrb( to_char(next_stage) || ',' ||
360: to_char(req_id) || ',' ||
361: critical_outcome, 1, 240));

Line 592: req_data := fnd_conc_global.request_data;

588: return;
589: end;
590:
591: /* Get state from last run if any. */
592: req_data := fnd_conc_global.request_data;
593:
594: /* Is this the first run? */
595: if (req_data is null) then
596: begin

Line 833: fnd_conc_global.set_req_globals(

829: return;
830: end if;
831: end;
832:
833: fnd_conc_global.set_req_globals(
834: conc_status => 'PAUSED',
835: request_data => critical_request);
836: if (retcode = 1) then /* submission with warnings, message set */
837: fnd_message.set_name('FND','CONC-Stage Reqs Submitted Warn');