Hi all,
I have a requirement to changes some of the parameters in the memebers of a PDS.
As there more than 100 memebers in that PDS is it possible to make the change with some JCL instead of manually doing it.
Eg:- Ihave a PDS( MY.first.PDS) in this i have 100 memebers...in which i have a parameter ABC which i need to change to XYZ
Note:- i need a JCL for this can not use any of thr REXX code.
I have tried two jcl's no luck:-
A)
//STEP0100 EXEC PGM=FILEAID
//SYSPRINT DD SYSOUT=*
//DD01 DD DSN=my.first.PDS1,
// DISP=SHR
//SYSIN DD *
$$DD01 UPDATE EDITALL=('01,abc,xyz)
Error:-REQUESTED MODULE FILEAID NOT FOUND
B)
//STEP EXEC PGM=IPOUPDTE,PARM=UPDATE
//SYSPRINT DD SYSOUT=*
//@TEST DD DSN=my.first.PDS1, DISP=SHR
//SYSIN DD *
abc<xyzI<
/*
Erros:-REQUESTED MODULE IPOUPDTE NOT FOUND
Thanks,
Surabhi.