‎2021 Jul 09 3:07 PM
Hello Experts,
I have to call a function module via Submit Program via Spool . Have a created a custom report in which I am calling the function module
The said function module has a internal table as Input parameter. How do I call Submit Program while passing the table in the report.
Program Flow:
Call Function 'JOB_OPEN'.
Submit z_report via job <lv_jobname>- number <lv_number> to sap-spool
Call function 'JOB_SUBMIT'
‎2021 Jul 09 3:33 PM
You can define almost any type of data as a report parameter, just declare it as NO-DISPLAY then submit the report with the WITH option
‎2021 Jul 09 3:33 PM
You can define almost any type of data as a report parameter, just declare it as NO-DISPLAY then submit the report with the WITH option
‎2021 Jul 09 10:32 PM
thank you. It worked. I declared the table as parameters and no display. It's working now