‎2018 Oct 23 9:24 AM
Hello every one,
I have a requirement in module pool . i have created a selection screen with some radio buttons in Top include and have a screens '100' (normal screen) & '200' (modal dailog box). in screen 100 PAI user command have written a code on a particular radio button screen 200 is called and data is displayed when i click back button on the application tool bar it should call selection screen
CASE ok_code.
WHEN 'BACK'.
CALL SELECTION-SCREEN 1000.
endcase.
now again i press on back button it is going back to the previously displayed screen, but as per requirement i need to go back to the as we use (leave program) statement. i tried with set screen , leave screen , leave to screen 0, and chnaged the next screen number in the attributes of the screen nothing worked . can any one help me in this please.
hope i am clear with the question
Thanks
Rakesh
‎2018 Oct 25 6:46 AM
‎2018 Oct 24 2:45 PM
The screen should be:
leave to screen 100.
If possible always use "leave to" instead of call. Call can cause too many internal sessions to be opened.
‎2018 Oct 25 6:46 AM
‎2018 Oct 25 9:54 AM
thanks winse ,
i have already solved the issue issue using the same . any ways thanks for your reply.