Can we pass arguments to a REXX program from JCL?
I suppose, JCL PARM can be used as we use for passing arguments to COBOL programs.. Do put your ideas here…
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You want
EXEC PGM=IRXJCL,PARM='member_name exec_args'.SYSEXECshould point to the PDS containingmember name.SYSTSINis the input forPULL,SYSTSPRTis the output DD forSAYCheck out the “Using REXX in TSO/E and Other MVS Address Spaces” chapter in the “TSO/E Rexx User Guide” book (SA22-7791) for a full example.