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

How to trigger abap report from module pool

Former Member
0 Likes
533

hi,

continuing with this link

this is done (Module pool )

there were two buttons (accept and delete )in the module pool..so when the user clik 'accepts ' the records (from table control ) then it shud call abap report which will run in background..

so how do we pass the values selected from table control to the abap report in one go.....as only one background job has to run..say if there are 10 entries then it shud take all the 10 entries and trigger the abap report where it will do the processing with the selected 10 records in the abap report.

Thanks

Mohan..

hi,

continuing with this link

this is done (Module pool )

there were two buttons (accept and delete )in the module pool..so when the user clik 'accepts ' the records (from table control ) then it shud call abap report which will run in background..

so how do we pass the values selected from table control to the abap report in one go.....as only one background job has to run..say if there are 10 entries then it shud take all the 10 entries and trigger the abap report where it will do the processing with the selected 10 records in the abap report.

Thanks

Mohan..

2 REPLIES 2
Read only

kesavadas_thekkillath
Active Contributor
0 Likes
497

Declare the parameters of the report as select options and call it using submit statement.

link:[http://help.sap.com/abapdocu_70/en/ABAPSUBMIT_VIA_JOB.htm]

Read only

Former Member
0 Likes
497

I used memory concept for this