Hello,
I have a report with a field which is filled by sending parameter (Add_parameter) when I want to print my report from a oracle form.
RUN_PRODUCT(REPORTS, 'myreport', SYNCHRONOUS, RUNTIME, FILESYSTEM, list_param_1);
In a loop:
I send the parameter "111" and I print the report.
I send the parameter "112" and I print the report.
I send the parameter "113" and I print the report.
I send the parameter "114" and I print the report.
... and so on.
It works fine until I have a large number of report to print. By instance, If i want to print 100 reports, It seem's I have some memory problem on my printer.
What I would like to do is to send as parameter "111" (first step) and "212" (last step) and only one "RUN_PRODUCT" call. But i don't know how to do it...
I have a report with a field which is filled by sending parameter (Add_parameter) when I want to print my report from a oracle form.
RUN_PRODUCT(REPORTS, 'myreport', SYNCHRONOUS, RUNTIME, FILESYSTEM, list_param_1);
In a loop:
I send the parameter "111" and I print the report.
I send the parameter "112" and I print the report.
I send the parameter "113" and I print the report.
I send the parameter "114" and I print the report.
... and so on.
It works fine until I have a large number of report to print. By instance, If i want to print 100 reports, It seem's I have some memory problem on my printer.
What I would like to do is to send as parameter "111" (first step) and "212" (last step) and only one "RUN_PRODUCT" call. But i don't know how to do it...