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

Problem in syntax :- LEAVE TO SCREEN 0

Former Member
0 Likes
689

Hi Experts,

I created a main program in se38.

I called a screen 100(that is module pool program).

in that i called dialog box. If i press ok in the dialog box i should come to screen 100

but it is gooing to screen 1000 that is main program.

Syntax i writen in dialog box is LEAVE TO SCREEN 0.

plz reply as soon as possible.

Hi Experts,

I created a main program in se38.

I called a screen 100(that is module pool program).

in that i called dialog box. If i press ok in the dialog box i should come to screen 100

but it is gooing to screen 1000 that is main program.

Syntax i writen in dialog box is LEAVE TO SCREEN 0.

plz reply as soon as possible.

5 REPLIES 5
Read only

Former Member
0 Likes
655

Hi,

Use CALL SCREEN 100.

Regards.

Read only

Former Member
0 Likes
655

hiii

leave to screen 0 means it will give you a first screen after execution you got.if you want to go directly to any screen then just use

call screen 100.

regards

twinkal

Read only

0 Likes
655

HI,

again call screen '100'.

otherwise leave to screen '100'.

or set screen ''100'.

regards.

sriram.

Read only

Former Member
0 Likes
655

Hi,

You should use CALL SCREEN '0100'. It will take you to 100 screen.

or

You can use LEAVE TO SCREEN '0100'. It will LEAVE the current screen and take you to the screen 100.

With Regards,

Rupinder

Read only

Former Member
0 Likes
655

ok