2016 Mar 13 5:56 PM
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
2016 Mar 13 6:03 PM
Preds F1 on keyword SUBMIT. Add VIA SELECTION-SCREEN.
Wolfgang
2016 Mar 13 6:03 PM
Preds F1 on keyword SUBMIT. Add VIA SELECTION-SCREEN.
Wolfgang
2016 Mar 13 6:57 PM