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

call a report program in module pool

Former Member
0 Likes
2,362

My code is

CASE SY-UCOMM.

     WHEN 'CON'.

       SUBMIT ZIM_C_SD_UPLOAD_TAB AND RETURN.

     WHEN 'REP'.

       SUBMIT ZIM_R_SD_UPLOAD_TAB AND RETURN.

    WHEN 'BACK' or 'EXIT' or 'CANCEL'.

     set screen 0.

     WHEN OTHERS.

   ENDCASE.



I have a screen

CONVERSIONS,REPORTS AND SMARTFORMS.wHEN I click on conversion it should go to conversions program.conversions is working fine the next image is coming.but when i press reports it is going directly to output ie 3rd image.Please help me with reports so that it will go to selection screen instead of directly displaying output


1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,193

Preds F1 on keyword SUBMIT. Add VIA SELECTION-SCREEN.

Wolfgang

2 REPLIES 2
Read only

Former Member
0 Likes
1,194

Preds F1 on keyword SUBMIT. Add VIA SELECTION-SCREEN.

Wolfgang

Read only

0 Likes
1,193

Thank you wolfgang.Got it.