The holddata for LU04016 says "Before applying this PTF, you must increase the directory and space allocation for the PRODXML file."
How does one find the name of the "PRODXML" file or files?
Release : 16.0
Component : Top Secret for z/OS
It is a Top Secret file.
You can find the File name with a job like this.
//RECESO EXEC PGM=GIMSMP
//SMPCSI DD DISP=SHR,DSN=TOPSECRET.CSI
//SMPLOG DD DUMMY
//SMPOUT DD SYSOUT=*
//*LIST ALLZONES SYSMOD.
//SMPCNTL DD *
SET BOUNDARY (TARGET).
LIST ALLZONES
DDDEF .
//*
Change TARGET to the name of your Target zone.
AAKOXML and CAKOXML point to the PRODXML file.
The following JCL was used to create the enlarged PRODXML file:
//AAKOXML DD DSN=TSS.MSPS.TSSG0GA.PRD.CAI.AAKOXML,
// DISP=(NEW,CATLG,DELETE),
// DCB=(LRECL=512,BLKSIZE=32760,RECFM=VB),
// MGMTCLAS=TSO,STORCLAS=TSO,DATACLAS=DEFAULT,
// SPACE=(TRK,(62,6,12))
//CAKOXML DD DSN=TSS.MSPS.TSSG0GA.PRD.CAI.CAKOXML,
// DISP=(NEW,CATLG,DELETE),
// DCB=(LRECL=512,BLKSIZE=32760,RECFM=VB),
// MGMTCLAS=TSO,STORCLAS=TSO,DATACLAS=DEFAULT,
// SPACE=(TRK,(62,6,12))