Doco for the utility is in the MOREDOC member of the file uploaded from the CBT site, search for PDSPDS.
Example of JCL/SYSIN: //ANTPDS JOB (MVS,1203),ANT,CLASS=A,MSGCLASS=X,MSGLEVEL=(1,1), // REGION=0M,NOTIFY=&SYSUID //********************************************************************* //* *** //* LIB: ANT.WORK.JCL(PDSPDS ) *** //* REF: ANT.WORK.ASM(PDSPDS ) *** //* ANT.CBT040.FILE *** //* DOC: *** //* Utility to scan/replace strings in a PDS. *** //* *** //********************************************************************* //PDSPDS PROC DSN=SYS1.PROCLIB, * LIBRARY TO EDIT * // PDSPARM=, * PARM -OPTIONAL * // OUT='*', * SYSPRINT CLASS * // COPIES=1 * NUMBER OF COPIES * //* //PDSPDS EXEC PGM=PDSPDS,PARM='&PDSPARM' //STEPLIB DD DISP=SHR,DSN=ANT.WORK.LINKLIB //SYSUT1 DD DSN=&DSN,DISP=SHR <-- input file //SYSUT2 DD DSN=&DSN,DISP=SHR <-- output file //SYSPRINT DD SYSOUT=&OUT,COPIES=&COPIES * RECFM=FBA,LRECL=133 * //SYSPUNCH DD SYSOUT=B * RECFM=FB ,LRECL=80 * //SYSWRK DD DSN=&&WORK,UNIT=SYSDA,SPACE=(TRK,(5,1)) // PEND //* //PROCLIB EXEC PDSPDS, // DSN=SYS1.PROCLIB //SYSIN DD * -OPTION NUM=81 -EDIT ALL.ALL -CHANGE /.V630./.V620./ -END /* // SYSUT1 is the DDNAME for input, SYSUT2 is the output file, for change-in-place the two refer to the same file. -OPTION NUM=81 says not to limit scan/replace to the default 72 columns. -EDIT ALL.ALL means change all members... -EDIT ANT would effect only member ANT, -EDIT ANT.ALL would edit all members starting with ANT. -CHANGE /text1/text2/ says what to change to what. Another useful option is -OPTION SCAN=Y to just provide a report on what would be changed. Check the MOREDOC member. Cheers, Ant. ----------------------------------------------------------------------- From: IBM Mainframe Discussion List [mailto:[email protected]] On Behalf Of Alvaro Guirao Lopez Sent: Thursday, 23 February 2012 5:10 PM To: [email protected] Subject: Re: IPOUPDTE / CPPUPDTE Download Clifford, z/OS installation libraries sometimes are deleted after the installation, I think, this in one case. Anthony, I have downloaded FILE 040 but I don't see instructions of the DD NAMEs and syntax nedded to pass to the module. Can u put here an example or a few comments detailing how to use it? Best regards, Álvaro. 2012/2/23 Anthony Thompson <[email protected]> > I use the PDSPDS program from file 40 on the CBT tape. > > Ant. > > > -----Original Message----- > From: IBM Mainframe Discussion List [mailto:[email protected]] On > Behalf Of Lizette Koehler > Sent: Wednesday, 22 February 2012 11:51 PM > To: [email protected] > Subject: Re: IPOUPDTE / CPPUPDTE Download > > > > > Hi list, > > > > I want to download IPOUPTE or CPPUPDTE. > > > > Is urgent. > > > > Thanks and regards, > > > > -- > > Un saludo. > > Álvaro Guirao > > > You can also go to the CBTTAPE.ORG website and find IPOUPDTE there. > Also, you might want to look for alternatives to using this function. > > There are many ways to do PDS member updates with other utilities. > > For example, if you have COMPUWARE MVS product, a pds update funciont > is in there Or if you have CA PDSMAN a PDS update function is in there. > > > Hope that helps. > > Lizette > > ---------------------------------------------------------------------- > For IBM-MAIN subscribe / signoff / archive access instructions, send > email to [email protected] with the message: INFO IBM-MAIN > > ---------------------------------------------------------------------- > For IBM-MAIN subscribe / signoff / archive access instructions, send > email to [email protected] with the message: INFO IBM-MAIN > -- Un saludo. Álvaro Guirao ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [email protected] with the message: INFO IBM-MAIN ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [email protected] with the message: INFO IBM-MAIN

