Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Passing internal table in submit program via spool

former_member598787
Participant
0 Kudos
568

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'

1 ACCEPTED SOLUTION

raymond_giuseppi
Active Contributor
346

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

2 REPLIES 2

raymond_giuseppi
Active Contributor
347

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

346

thank you. It worked. I declared the table as parameters and no display. It's working now