If you final requirement is to move only the catalog entries from one MCAT to another, and I emphasize MOVE, then you can use wildcards THIS IS JUST AND EXAMPLE
//UCATDVR DD DSN=CATALOG.MASTER.ZOSV1R13,DISP=SHR //UCATNEW DD DSN=CATALOG.USERCAT.ZOSV2R1,DISP=SHR //DD1 DD VOL=SER=MVSSMP,UNIT=3390,DISP=OLD //SYSPRINT DD SYSOUT=* //SYSIN DD * REPRO ENTRIES(SMPE.JAVA71.**) - INFILE(UCATDVR) OUTFILE(UCATNEW) MERGECAT FILE(DD1) you can specify ENTRIES(SYS1.PLPA.**) also for example Carmen Vitullo ----- Original Message ----- From: "Juan Escamilla" <[email protected]> To: [email protected] Sent: Monday, September 17, 2018 8:10:51 AM Subject: Re: how to catalog page dataset to new MCAT Use the same REPRO MERGCAT JCL that you used before, except change: LEVEL(SYS1.PLPA.PAGE) - to: ENT(SYS1.PLPA.PAGE) - Give that a try. ---------------------------------------------------------------------- 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
