‎2007 Sep 01 9:59 AM
‎2007 Sep 01 10:15 AM
hi
CALL SCREEN will terminates current screen process and control goes to next screen
and conrol can comes back by using
statement LEAVE TO SCREEN 100.
but in SET SCREEN control goes to next called screen after complete the process of current screen control nver comes back to calling screen
LEAVE SCREEN terminates the process of the current screen.
reward if you find helpful
regards
Nagesh.Paruchuri
‎2007 Sep 01 10:15 AM
hi
CALL SCREEN will terminates current screen process and control goes to next screen
and conrol can comes back by using
statement LEAVE TO SCREEN 100.
but in SET SCREEN control goes to next called screen after complete the process of current screen control nver comes back to calling screen
LEAVE SCREEN terminates the process of the current screen.
reward if you find helpful
regards
Nagesh.Paruchuri
‎2007 Sep 01 10:18 AM
Hi,
The difference is as below:
Call Screen:
The system will go to process the called screen, leaving the processing of calling screen on hold. On using LEAVE SCREEN in the called screen, the system will come back and resume the processing of the calling screen.
Set Screen:
The processing of the calling screen is terminated and the system starts the processing of called screen. The execution will not come back to the calling screen again..
Thanks and Best Regards,
Vikas Bittera.
‎2007 Sep 01 10:19 AM
hi
good
With SET SCREEN the current screen simply specifies the next screen in the chain , control branches to this next screen as sonn as th e current screen has been processed
thanks
mrutyun^
‎2007 Sep 01 10:20 AM
Hi Mahesh..
SET Screen <NO>.
This statement will change the Next Screen Dynamically. It will not transfer the Control to the Called Screen.
CALL SCREEN <NO>.
This Statement interrupts the Processing current screen and Calls the Given Screen.
To return the Control back to the Calling Screen we can use.
LEAVE TO SCREEN 0.
<b>reward if Helpful</b>
‎2007 Sep 01 11:09 AM
Hi mahesh,
1. Call Screen = <b>IMMEDIATELY</b> go to the screen
2. Set Screen = First Finish the PAI of current screen,
and then after completion,
go to the new screen.
regards,
amit m.