Writing REXX application that is required to interface with another REXX/CList application.
The other application is a series of ISPF Panels and REXX that check security and once passed, allow you to do some requests. From ISPF command line you can invoke it by keying "TSO clist;p1;p2;p3;p4". Keying the entire string on the command line in ISPF causes the system to be invoked, all the panels satisfied and the request to be made.
Sending the entire command string through "TSO clist;p1;p2;p3;p4" ends with the first clist being invoked and nothing else. Based on that it appears TSO considers this a single command.
Each parm references a CLIST/REXX job. The first 2 screens I can bypass. The third checks security and, once passed, the last panel/clist is invoked to get P4. I am not allowed to code the security check into my application. I can call the third panel, but not sure how I would pass the parm for it and then pass the parm for the last one.
Ideally I prefer to send the entire command line and collect the RC when it is finished. Can that be done?
The other application is a series of ISPF Panels and REXX that check security and once passed, allow you to do some requests. From ISPF command line you can invoke it by keying "TSO clist;p1;p2;p3;p4". Keying the entire string on the command line in ISPF causes the system to be invoked, all the panels satisfied and the request to be made.
Sending the entire command string through "TSO clist;p1;p2;p3;p4" ends with the first clist being invoked and nothing else. Based on that it appears TSO considers this a single command.
Each parm references a CLIST/REXX job. The first 2 screens I can bypass. The third checks security and, once passed, the last panel/clist is invoked to get P4. I am not allowed to code the security check into my application. I can call the third panel, but not sure how I would pass the parm for it and then pass the parm for the last one.
Ideally I prefer to send the entire command line and collect the RC when it is finished. Can that be done?