williewhale
Programmer
In a panel I am using PanelRexx to write to a PDS. I then close the dataset and write to different member. I do this 1 - many times. After each Execio I have to hit <enter> and then process the next rexx statement. Is there a way to "simulate" enter? I do not care about the I/O, I only want to hit <enter> once from the panel. My rexx works fine outside of the panel. Trace tells me it is between the Execio & Free statement that I have to hit <enter>
QUEUE QUE_PACK_CMD
"ALLOC F(BKP) DA('my.dataset(member1)') SHR REUSE"
"EXECIO * DISKW BKP (FINIS"
"FREE F(BKP)"
QUEUE QUE_PACK_NAME
"ALLOC F(BKP) DA('my.dataset(member2)') SHR REUSE"
"EXECIO * DISKW BKP (FINIS"
"FREE F(BKP)"
I hope this is a duh question.
QUEUE QUE_PACK_CMD
"ALLOC F(BKP) DA('my.dataset(member1)') SHR REUSE"
"EXECIO * DISKW BKP (FINIS"
"FREE F(BKP)"
QUEUE QUE_PACK_NAME
"ALLOC F(BKP) DA('my.dataset(member2)') SHR REUSE"
"EXECIO * DISKW BKP (FINIS"
"FREE F(BKP)"
I hope this is a duh question.