Application Development 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: 

leave to list processing and retun to scren 100

Former Member
0 Kudos

Once output is generated in the list i want back to main screen .

How i will prceed

regards

jithen

4 REPLIES 4

Former Member
0 Kudos

Hai,

Set screen 0.

Leave Screen.

Best Regards,

rama

MarcinPciak
Active Contributor
0 Kudos

This will end up current calling sequence (will proceed after CALL SCREEN XXX statement). So if no other CALLs were found the program will be finished, or will go back in selection screen.


LEAVE to LIST-PROCESSING and RETURN TO SCREEN 0.  

This will go back to screen XXX, if main screen is 200.


LEAVE to LIST-PROCESSING and RETURN TO SCREEN 200.  "when you choose BACK, screen 200 will be called (main screen)

Regards

Marcin

Former Member
0 Kudos

Use statement LEAVE TO SCREEN 0.

Former Member
0 Kudos

HI,

After the output is generated to get back to the previous screen you have to use the statement LEAVE SCREEN.

If you want to go to any other screen you can use

LEAVE TO SCREEN 2 (SCREEN NUMBER) .

Thanks & Regards,

Pavan.