The CA Intertest v 10 CAVHCONF assembly step fails with message IEC130I SYSPUNCH missing.
search cancel

The CA Intertest v 10 CAVHCONF assembly step fails with message IEC130I SYSPUNCH missing.

book

Article ID: 6344

calendar_today

Updated On:

Products

InterTest - CICS InterTest - Batch InterTest VSE - CICS

Issue/Introduction

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

 

Environment

Z/OS

Cause

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)) 

 

Resolution

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))