Hi,
I just want to create a permanent table using ISPF and add some data to it.
I had created the lib <userid>.TEST.ISPTLIB for the tables.
Even after executing the below query, I am not able to create any ISPF tables in the respective library.
Whether my approach is right. Plz help
/* REXX */
ADDRESS ISPEXEC
"LIBDEF ISPPLIB DATASET ID('CXN1.TEST.ISPPLIB')"
"LIBDEF ISPTLIB DATASET ID('CXN1.TEST.ISPTLIB')"
"ADDPOP"
ZWINTTL = "TRANFORMATION OF JCLS"
"DISPLAY PANEL(PNLPRC)"
"VGET VAR1"
"REMPOP"
"TBCREATE TELBOOK KEYS(TABKEY) WRITE"
"TBSAVE TELBOOK"
After running the above REXX program in the command prompt, the ISPF table is not created.
Thanks
Vinu