The client just installed CA Intertest for CICS v 10. When the client attempts to assemble and relink the CAVHCONF JCL member located in the CAVHJCL JCL PDS the client receives message
IEC130I SYSPUNCH DD STATEMENT MISSING
The clients LPAR configuration does not allow SYSLIN for the DD NAME of the object deck for the ASMA90 utility program. The default JCL is listed below.
//ASM EXEC PGM=ASMA90,REGION=2M,
// PARM='LIST,XREF(SHORT),RENT'
//SYSLIN DD DSN=&&OBJECT,DISP=(NEW,PASS),UNIT=VIO,
// DCB=BLKSIZE=3200,SPACE=(TRK,(1,1))
To resolved the problem the client changed SYSLIN to SYSPUNCH for the DD NAME of the object deck for the ASMA90 step as outlined below.
//ASM EXEC PGM=ASMA90,REGION=2M,
// PARM='LIST,XREF(SHORT),RENT'
//SYSPUNCH DD DSN=&&OBJECT,DISP=(NEW,PASS),UNIT=VIO,
// DCB=BLKSIZE=3200,SPACE=(TRK,(1,1))