Hello,
I am trying to create a dynamic print button. i am using apex 18.1. i am having an issue with the pl/sql process for printing a report using jasper reports.
here is where part of the code I am having problems with. The part where I am tring to assign the &P13_FORM_TYPE. it does not like it written this way. I have tried writing a number of different ways with no luck.
-- call the report and pass parameters
xlib_jasperreports.show_report (p_rep_name => 'RCSDATA/RCS_Management_504/'||'&P13_FORM_TYPE.',
p_rep_format => xlib_jasperreports.c_rep_format_pdf,
Normally this part of the code would look like this:
-- call the report and pass parameters
xlib_jasperreports.show_report (p_rep_name => 'RCSDATA/RCS_Management_504/myfilename',
p_rep_format => xlib_jasperreports.c_rep_format_pdf,
Any help is much appricated.