DBA Data[Home] [Help]

APPS.PAY_HK_IR56_REPORT dependencies on FND_REQUEST

Line 25: -- 19 Feb 03 apunekar 115.4 Bug#2810178 Removed no. of copies passed to fnd_request.set_print_options

21: -- Added dbdrv line
22: -- 02 Dec 02 srrajago 115.3 Included 'nocopy' option for the 'OUT'
23: -- parameter of the procedure 'range_code'
24: -- Included checkfile command too.
25: -- 19 Feb 03 apunekar 115.4 Bug#2810178 Removed no. of copies passed to fnd_request.set_print_options
26: -- 25 Feb 03 apunekar 115.6 Bug#2810178 Reverted fix
27: -- 29 May 03 kaverma 115.7 Bug#2920731 Replaced per_all_assignments_f and per_all_people_f
28: -- by secured views per_assignments_f and per_people_f resp from queries.
29: -----------------------------------------------------------------------------

Line 364: l_print_return := fnd_request.set_print_options

360: OPEN csr_get_print_options(l_payroll_action_id);
361: FETCH csr_get_print_options INTO rec_print_options;
362: CLOSE csr_get_print_options;
363: /*Reverted fix for 2810178 */
364: l_print_return := fnd_request.set_print_options
365: (printer => rec_print_options.printer,
366: style => rec_print_options.print_style,
367: copies => l_number_of_copies,
368: save_output => hr_general.char_to_bool(rec_print_options.save_output),

Line 384: l_request_id := fnd_request.submit_request

380: -- all the parameters need to as well.
381: -- Pass in assignment_id if it's been supplied.
382:
383: if l_assignment_id <> 0 then
384: l_request_id := fnd_request.submit_request
385: (application => 'PAY',
386: program => l_report_short_name,
387: argument1 => 'P_ARCHIVE_ACTION_ID=' || l_archive_action_id,
388: argument2 => 'P_FULL_OR_PARTIAL=' || l_full_or_partial,

Line 393: l_request_id := fnd_request.submit_request

389: argument3 => 'P_PAYROLL_ACTION_ID=' || l_payroll_action_id,
390: argument4 => 'P_ASSIGNMENT_ID=' || l_assignment_id,
391: argument5 => 'BLANKPAGES=NO');
392: else
393: l_request_id := fnd_request.submit_request
394: (application => 'PAY',
395: program => l_report_short_name,
396: argument1 => 'P_ARCHIVE_ACTION_ID=' || l_archive_action_id,
397: argument2 => 'P_FULL_OR_PARTIAL=' || l_full_or_partial,