‎2008 Mar 06 4:56 AM
i'm using call screen statement but that increases screen levels what shud i use to leave to previous screen .
eg
i'm using call screen 1002 starting at 45 60
ending at 60 90.
it will call a small screen .now what to do to return to previous screen.
‎2008 Mar 06 5:04 AM
Hi,
There should be any button on screen.
In AT SELECT-SCREEN .
IF sy-ucomm EQ 'BACK'.
leave screen to 0.
ENDIF.
‎2008 Mar 06 5:02 AM
You can use the LEAVE statement
LEAVE TO SCREEN 0100<prev scr no>
Regards
Gopi
‎2008 Mar 06 5:04 AM
Hi,
There should be any button on screen.
In AT SELECT-SCREEN .
IF sy-ucomm EQ 'BACK'.
leave screen to 0.
ENDIF.
‎2008 Mar 06 5:15 AM
Hi Vivek Gaur,
When you want to go back to previous sprees just use LEAVE TO SCREEN 0 in some button see the following example.
Ex
if sy-ucomm eq 'BACK'.
LEAVE TO SCREEN 0.
endif..
Reward if it is useful,
Mahi.
‎2008 Mar 06 5:15 AM