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

calling Modulepool from repot

Former Member
0 Likes
455

How to call a Module pool program from a report.

Thanks in advance

vamsi

Hi,

If a program has a transaction code, there are two ways of starting it from another program

1) LEAVE TO TRANSACTION <tcod> [AND SKIP FIRST SCREEN].

2)CALL TRANSACTION <tcod>

So attach a transaction for your module pool program and call it using any of the above methods from your report.

Regards,

Sruthi

3 REPLIES 3
Read only

Former Member
Read only

Former Member
0 Likes
424

create transaction code for the module pool prog.

and use call transaction.

ex:

call transaction 'ZTEST'.

Read only

Former Member
0 Likes
424

Hi,

If a program has a transaction code, there are two ways of starting it from another program

1) LEAVE TO TRANSACTION <tcod> [AND SKIP FIRST SCREEN].

2)CALL TRANSACTION <tcod>

So attach a transaction for your module pool program and call it using any of the above methods from your report.

Regards,

Sruthi