fantafanta
Programmer
Hi all,
The below code will popup the data present in that member, which is provided at run time.
/* REXX - TO POPUP A THE DATA PRESENT IN A MEMBER */
PARSE PULL MEM
ADDRESS
"ISPEXEC ADDPOP"
"ISPEXEC BROWSE DATASET('DLMG0.PDS.COPYBOOK("MEM")')"
"ISPEXEC REMPOP"
When we execute this, it waits for input (which we need to type manually).
But what I need is when it asks for member i will place my cursor in particular position where the member is present and hit enter, it should take that as member name until the next space character.
The below code will popup the data present in that member, which is provided at run time.
/* REXX - TO POPUP A THE DATA PRESENT IN A MEMBER */
PARSE PULL MEM
ADDRESS
"ISPEXEC ADDPOP"
"ISPEXEC BROWSE DATASET('DLMG0.PDS.COPYBOOK("MEM")')"
"ISPEXEC REMPOP"
When we execute this, it waits for input (which we need to type manually).
But what I need is when it asks for member i will place my cursor in particular position where the member is present and hit enter, it should take that as member name until the next space character.