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

dialog module

naveenvishal
Contributor
0 Likes
517

i want to close/remove a dialog window, after it calls a new ( full screen) window.. currently what heppening is that the dialog window (smaller in size) remains open at background and when i move back, the window is still there..

window---->dialog window calls--> window

(full screen) (small) (full screen)

window->dialog window <back/close-- window

(full screen) (small) (full screen)

i want to close/end the dialog window before i move to nxt window, how can i do that..

thanx,

3 REPLIES 3
Read only

Former Member
0 Likes
502

Hi,

Try using..

'LEAVE TO SCREEN <screen_no>'

Instead of using - 'CALL SCREEN <screen_no>'

Read only

Former Member
0 Likes
502

Hi,

Write a LEAVE TO SCREEN 0 statement after your CALL SCREEN statement. I think this would solve the problem.

When you call a screen, it stores the previous screen ID in memory and returns back to this screen when the called screen processing is completed. When it executes LEAVE to SCREEN 0, the control goes to your first screen.

Reward points if helpful.

Thanks and Regards,

Lakshmi.

Read only

naveenvishal
Contributor
0 Likes
502

well , the solution of this prob is i had to move back to the initial window and from their onwards (based on a flag), move to the second window.

Thanx all for contributing..