Is it possible to hold execution of a panel at some step. for example
IF (&XSUBSYS NE ' ' AND &XCRTRID NE ' ' AND
&XTBLNME NE ' ' AND &XINPFLE NE ' ')
IF (&SQLRTCD = 1 )
.MSG = GNSQL005
ELSE
IF (&SQLRTCD = 2 )
.MSG = GNSQL006
ELSE
.MSG = GNSQL007
*REXX(*,(REXX3))
IF RETCD = 0
.MSG = GNSQL008
ELSE
.MSG = GNSQL009
&XTBLNME NE ' ' AND &XINPFLE NE ' ')
IF (&SQLRTCD = 1 )
.MSG = GNSQL005
ELSE
IF (&SQLRTCD = 2 )
.MSG = GNSQL006
ELSE
.MSG = GNSQL007
*REXX(*,(REXX3))
IF RETCD = 0
.MSG = GNSQL008
ELSE
.MSG = GNSQL009
I want to hold the execution of panel till the execution of rexx is completed. Once the REXX3 has been completed, the next step needs to be executed. Since the value for the RETCD I will get from the REXX3, so I need to do this.. or if some better way to do it... I have googled it but didn't get much.