Application Development and Automation 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: 
Read only

Passing internal table in submit program via spool

former_member598787
Participant
0 Likes
1,471

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
Read only

RaymondGiuseppi
Active Contributor
1,249

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
Read only

RaymondGiuseppi
Active Contributor
1,250

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

Read only

1,249

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