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: 

Call program screen in ABAP Report

Former Member
0 Kudos

I have a execute program which match to a transaction, in the program, which will generate a selection screen and do selection. After that, the program will call another program screen to do somethings, i want to know can i call program's screen in my execute report, thanks

3 REPLIES 3

0 Kudos

Hi,

What you can do is create a transacion if already not there for the second program and then use CALL TRANSACTION to call that second program.

You can also use SUMBIT and the program name.

Regards,

Sesh

0 Kudos

which method is better?

besides, i would like to know dialog programming is client dependent or client independent, if i would like to test the program in another client, whether is it i must activate the program? thanks

varma_narayana
Active Contributor
0 Kudos

Hi

To Call the Transaction :

CALL TRANSACTION '<TCODE>' AND SKIP FIRST SCREEN.

To call a Report :

SUBMIT <REPORT> USING SELECTION-SCREEN <NO>.

<b>Reward if Helpful</b>