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 a module pool program screen to an executable program

Former Member
0 Likes
1,572

Hi gurus,

I have created a executable program to use selection-screen and want to see my output in module pool program where I have designed table control according to my requirement.

How can I call the module-pool program screen from an executable program?

Any help?

Regards

Mac

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,101

Use CALL TRANSACTION.

Rob

5 REPLIES 5
Read only

Former Member
0 Likes
1,102

Use CALL TRANSACTION.

Rob

Read only

Former Member
0 Likes
1,101

Hi Mohan,

You have to use Call Transaction statement.

for data transfer from report to module pool program you have to mention parameter ids for the screen elements. These parameter ids should be set before call Tarnsaction statement. I think this information is helpful for you.

Regards,

Raghava Channooru.

Read only

Former Member
0 Likes
1,101

Hi Mac,

I think you can proceed with a report program alone . There you create a screen with the table control to populate your result.

In the report program, after getting values for internal table for your display, just call the said screen.

i.e.

CALL SCREEN <screen number>.

Hope this may help you.

Regards,

Smart Varghese

Read only

Former Member
0 Likes
1,101

Hi Mohan,

First EXPORT values from your report to Module pool program and then use

CALL TRANSACTION in the report. Next IMPORT the values from report and based on the values

display the output.

Regards,

Sriram.

Read only

Former Member
0 Likes
1,101

Hi,

Please use call screen <Screen Number> after START-OF-SELECTION. Then you program will be executing similar to the module pool program.

Thanks,

Suresh Babu Dorai