I have a panel defined as follows in DSRP039.ABCD.EXEC(TEST1) pds
)BODY
+ PANEL1
+ THIS IS THE TEST PANEL
+ ENTER YOUR NAME PLEASE => _URNAME
+ GOOD BYE ...
)END
+ PANEL1
+ THIS IS THE TEST PANEL
+ ENTER YOUR NAME PLEASE => _URNAME
+ GOOD BYE ...
)END
and the REXX program to display the above panel
TEST2
/* REXX */
"ISPEXEC LIBDEF ISPPLIB DATASET ID('DSRP039.ABCD.EXEC')"
"ISPEXEC ADDPOP"
"ISPEXEC DISPLAY PANEL(TEST1)"
"ISPEXEC REMPOP"
EXIT
"ISPEXEC LIBDEF ISPPLIB DATASET ID('DSRP039.ABCD.EXEC')"
"ISPEXEC ADDPOP"
"ISPEXEC DISPLAY PANEL(TEST1)"
"ISPEXEC REMPOP"
EXIT
My question is .....,
for the first time execution i could see my PANEL , but if i make any changes to the PANEL coding and save , the new PANEL is not displayed but the old one keeps displaying. When i logoff properly and again logon, then only i am able to see the new changes.
i execute the REXX program with typing EX at the member name.
Kindly help me, how to solve this isse.
Regards...
Gurpreet