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

Set Screen 0

Former Member
0 Likes
5,922

Hi

can any 1 tel me what is set screen 0 does ????

not set screen , its set screen 0

7 REPLIES 7
Read only

Former Member
0 Likes
2,059

Hi,

it will set the screen to screen number 0, which is the initial screen(selection-screen).

regards,

madhu

Read only

Former Member
0 Likes
2,059

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.

Read only

Former Member
0 Likes
2,059

hi

set screen 0

OR

leave to screen 0;

went to SAP initial screen that comes just after login.

reward if helpful.

Read only

Former Member
0 Likes
2,059

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

Read only

Former Member
0 Likes
2,059

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.

Read only

Former Member
0 Likes
2,059

normally it is used when exit command

set screen 0 will move to the initial screen..............

Read only

Former Member
0 Likes
2,059

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.