DBA Data[Home] [Help]

APPS.FND_REQUEST_SET dependencies on FND_CONC_GLOBAL

Line 76: req_data := fnd_conc_global.request_data;

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

Line 305: fnd_conc_global.set_req_globals( request_data =>

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

Line 355: fnd_conc_global.set_req_globals(

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

Line 581: req_data := fnd_conc_global.request_data;

577: return;
578: end;
579:
580: /* Get state from last run if any. */
581: req_data := fnd_conc_global.request_data;
582:
583: /* Is this the first run? */
584: if (req_data is null) then
585: begin

Line 797: fnd_conc_global.set_req_globals(

793: return;
794: end if;
795: end;
796:
797: fnd_conc_global.set_req_globals(
798: conc_status => 'PAUSED',
799: request_data => critical_request);
800: if (retcode = 1) then /* submission with warnings, message set */
801: fnd_message.set_name('FND','CONC-Stage Reqs Submitted Warn');