DBA Data[Home] [Help]

APPS.FND_CP_RT_PKG dependencies on FND_REQUEST

Line 211: if (not fnd_request.set_repeat_options(

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,
215: increment_dates => 'Y'))

Line 232: if (not fnd_request.set_print_options(

228: else
229: FND_FILE.PUT_LINE (FND_FILE.LOG, 'Printer is ' || l_printer );
230: FND_FILE.PUT_LINE(FND_FILE.LOG, 'Set print options...one copy to default printer.');
231: end if;
232: if (not fnd_request.set_print_options(
233: printer => l_printer,
234: style => 'PORTRAIT',
235: copies => 1,
236: save_output => TRUE,

Line 248: if (not fnd_request.add_notification(user => 'SYSADMIN')) then

244:
245: -- Add a notification to SYSADMIN user
246: FND_FILE.PUT_LINE(FND_FILE.LOG, 'Add notification to SYSADMIN user...');
247:
248: if (not fnd_request.add_notification(user => 'SYSADMIN')) then
249: errbuf := substr(fnd_message.get, 1, 240);
250: retcode := 2;
251: rollback;
252: return;

Line 258: reqid := fnd_request.submit_request(application => 'FND',

254:
255: -- Submit the request for FNDCPRT_PLSQL with run_mode='BASIC'
256: FND_FILE.PUT_LINE(FND_FILE.LOG, 'Submit a request for FNDCPRT_PLSQL in BASIC run_mode...');
257:
258: reqid := fnd_request.submit_request(application => 'FND',
259: program => 'FNDCPRT_PLSQL',
260: description => 'Test of Single Request Submission',
261: argument1 => 'BASIC'); -- run_mode = 'BASIC'
262:

Line 289: reqid := fnd_request.submit_request(application => 'FND',

285: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, 'Submit a single sub-request...');
286: SECTION_TITLE(FND_FILE.LOG, 'Submit a single sub-request...');
287: FND_FILE.PUT_LINE(FND_FILE.LOG, 'Submit a single sub-request...');
288: -- Submit the child request. The sub_request parameter must be set to 'Y'.
289: reqid := fnd_request.submit_request(application => 'FND',
290: program => 'FNDCPRT_PLSQL',
291: description => 'Test of Single Sub-request Submission',
292: sub_request => TRUE,
293: argument1 => 'BASIC'); -- run_mode = 'BASIC'