I need to pass a value from a JCL to REXX for further processing. My JCL goes like this:
//STEP3 EXEC PGM=IKJEFT01,PARM='SYS345V.VSAM.FILE'
//SYSEXEC DD DSN=SYS345V.JCL.PDS,DISP=SHR
//SYSPRINT DD SYSOUT=*
//SYSTSPRT DD SYSOUT=*
//SYSUT2 DD SYSOUT=*
//SYSTSIN DD *
%VSAMUTI
and I'm not sure how to receive the value in the Called REXX program i.e., %VSAMUTI. I tried this way.
/*rexx */
Arg parm
..
It didn't work.. Can anyone suggest me the correct way pls..
Regards,
Viswa