DBA Data[Home] [Help]

APPS.FND_CP_RT_PKG dependencies on DUAL

Line 210: From Dual;

206: FND_FILE.PUT_LINE(FND_FILE.LOG, 'Set repeat options...2 resubmissions, 1 min apart, increment dates.');
207:
208: Select to_char(SYSDATE + (3/1440), 'DD-MON-YYYY HH24:MI:SS')
209: Into l_rpt_end_time
210: From Dual;
211: if (not fnd_request.set_repeat_options(
212: repeat_interval => 1,
213: repeat_unit => 'MINUTES',
214: repeat_end_time => l_rpt_end_time,

Line 409: -- If we are running as a standalone PL/SQL procedure, submit the set as an in indivdual request.

405: FND_FILE.PUT_LINE(FND_FILE.LOG, 'Call submit_set...');
406:
407: -- ----------------------------------------------
408: -- If we are running as a PL/SQL concurrent program, submit the set as a sub-request.
409: -- If we are running as a standalone PL/SQL procedure, submit the set as an in indivdual request.
410: -- Check req_data: if NULL, we are running as a standalone
411: -- ----------------------------------------------
412: req_data := fnd_conc_global.request_data;
413: if (req_data IS NULL) then