DBA Data[Home] [Help]

APPS.OE_BATCH_PRICING dependencies on FND_CONC_GLOBAL

Line 161: l_req_data := fnd_conc_global.request_data;

157:
158: BEGIN
159:
160: FND_PROFILE.Get('CONC_REQUEST_ID', l_request_id);
161: l_req_data := fnd_conc_global.request_data;
162:
163: IF l_debug_level > 0 THEN
164: oe_debug_pub.add('REQUEST ID : '|| l_request_id, 1);
165: oe_debug_pub.add('Request Data : ' || nvl(l_req_data, -99), 1);

Line 492: fnd_conc_global.set_req_globals(conc_status => 'PAUSED', request_data => to_char(l_req_data_counter));

488:
489: -- Set the status of parent request to Paused only if a child request has been submitted.
490: -- If preview mode is Yes, then child requests are not submitted, hence no need to pause the parent request.
491: if l_req_data_counter > 0 then
492: fnd_conc_global.set_req_globals(conc_status => 'PAUSED', request_data => to_char(l_req_data_counter));
493: end if;
494:
495: errbuf := 'Sub-Request ' || to_char(l_req_data_counter) || 'submitted!';
496: retcode := 0;