OK, I'm a little new to this Dialog stuff so I'm justing trying to figure it out. Hopefully someone can help me.
I got a REXX from another post on this board on how to execute ISPF SELECT commands to start multiple screens when logging on. Here is the code named STRTPDF3:
/*REXX*/
ADDRESS ISPEXEC
NEW = "NEWAPPL(PDF) SUSPEND"
"SELECT PGM(ISPSTRT) PARM(SCRNAME EJES PERM;S.H;SWAP) " NEW
"SELECT PGM(ISPSTRT) PARM(SCRNAME MYDSL PERM;3.4;SWAP) " NEW
EXIT
The code works fine when I execute it after I am logged on to ISPF. However, I am trying to have it execute automatically when I log on. I have this statement in my login CLIST:
EXIT: +
PDF CMD(%STRTPDF3) NEWAPPL(PDF)
END
When I try to exexcute it at logon, the TSO session just freezes and never responds and I have to get an operator to cancel my session.
I guess my question is can I do this and if so, what am I doing wrong? As I said. the REXX works fine if I am already logged on. Thanks.