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

dialog program to ABAP Report

Former Member
0 Likes
725

Hi,

I want to display Report from dialog program , and also back from ABAP Report to dialog program.

please provid sample code.

Thanks

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
556

from you dialogue program:

in the PAI event, check the sy-ucomm of your button and use:

SUBMIT {rep|(name)} [selscreen_options]

[list_options]

[job_options]

[AND RETURN]. ->takes you back to your dialogue program

press F1 on SUBMIT. you will get whats needed..

from you dialogue program:

in the PAI event, check the sy-ucomm of your button and use:

SUBMIT {rep|(name)} [selscreen_options]

[list_options]

[job_options]

[AND RETURN]. ->takes you back to your dialogue program

press F1 on SUBMIT. you will get whats needed..

3 REPLIES 3
Read only

former_member194669
Active Contributor
0 Likes
556

display Report from dialog program

http://help.sap.com/saphelp_40b/helpdata/en/9f/db9d2f35c111d1829f0000e829fbfe/content.htm


SUBMIT (PROGRAM NAME) AND RETURN.

ABAP Report to dialog program


call transaction <tran code>

call screen <sreen no>

Read only

Former Member
0 Likes
556

call transaction 'T-CODE' SKIP FIRST SCREEN.

OR

SUBMIT 'program name' via selection-screen and return.......

Read only

Former Member
0 Likes
557

from you dialogue program:

in the PAI event, check the sy-ucomm of your button and use:

SUBMIT {rep|(name)} [selscreen_options]

[list_options]

[job_options]

[AND RETURN]. ->takes you back to your dialogue program

press F1 on SUBMIT. you will get whats needed..