I'm currently writing an ISPF dialog and I want to call a REXX in there. For this, I am using the *REXX command as follows
*REXX(*,(REXXFUNC))
My REXX starts with
/* REXX */
ARG PARM1 PARM2
ARG PARM1 PARM2
Now the question. How can I use *REXX to call REXXFUNC with two parameters? E.g.:
*REXX(*,(REXXFUNC P1 P2))
But this doesn't work.
Any help is appreciated.
Regards,
arens