Hi everyone,
First of all am new to rexx and clist.
I have an issue related to rexx and clist.
I have a clist called cname in pds id.sample.jcl
it is saying like this
PROC 5 A,B,C,D,E
CONTROL NOFLUSH NOPROMPT NOLIST NOSYMLIST NOCONLIST NOMSG
OPENFILE TEMPFILE OUTPUT
SET &TEMPFILE = &A &B &C &D &E
PUTFILE TEMPFILE
CLOSFILE TEMPFILE
FREE FI(TEMPFILE)
So here all these paramters getting written in to a temporary file .
My requirement is i want to know from where it is getting the parameters.
what and all I know how to pass parameters to a clist is %clistname parm1,parm2,parm3,parm...
this is for implictly passing the paramteres.
so I searched for the same syntax in the id.sample.jcl pds which i mentioned earlier.
this is pds is composed of all those related modules.
can any one suggest me is this is the correct process to search or is there any other way to pass parameters to a clist