‎2008 Jun 05 5:14 AM
Hi
can any 1 tel me what is set screen 0 does ????
not set screen , its set screen 0
‎2008 Jun 05 5:24 AM
Hi,
it will set the screen to screen number 0, which is the initial screen(selection-screen).
regards,
madhu
‎2008 Jun 05 5:26 AM
Hi,
To interrupt processing of the current screen and branch to a new screen or sequence of screens, use the CALL SCREEN statement. The screen must belong to the same program.
In the program, the system constructs a stack.
To return to the statement following the CALL SCREEN statement, you can use
either
SET SCREEN 0.
LEAVE SCREEN.
or
LEAVE TO SCREEN 0.
The screen that called the other screen is then processed further.
Reward if useful.
Regards,
Swetha.
‎2008 Jun 05 5:29 AM
hi
set screen 0
OR
leave to screen 0;
went to SAP initial screen that comes just after login.
reward if helpful.
‎2008 Jun 05 5:40 AM
Hi,
SET SCREEN is used to dynamically override the u201CNEXT SCREENu201D attribute of the screen.
And here SET SCREEN 0 .... takes you to the previous screen i.e. it does the same functionality as that of BACK button (F3) on Application Toolbar.
Reward if helpful.
Regards,
Syed
‎2008 Jun 05 5:49 AM
hi,
To leave a screen called with CALL SCREEN or to return from a branch to the transaction selection screen, you must use the statement
SET SCREEN 0.
or
LEAVE TO SCREEN 0.
‎2008 Jun 05 6:04 AM
normally it is used when exit command
set screen 0 will move to the initial screen..............
‎2008 Jun 05 6:23 AM
hi.....
set screen 0 is maily used to return to the initial screen
after a particular condition.
if u have deeloped a main screen with other menu options...set screen 0 will return to this main screen.
it is generally used in at exit command.