After installing CA Intertest for CICS v 10 the client receives a JCL error when trying to compile and link the COBOL demo program COBDEMO. When the client submits JCL member CABADMCJ the job fails with error message
IEF210I JOBNAME ASM ASBIN25 SYSPRINT - UNIT FIELD SPECIFIES INCORRECT DEVICE NAME
One of the steps in the COBDEMO assembly, assembles assembler program ASBIN25. The assembly step fails due to the sites LPAR not supporting the SYSPRINT UNIT=DISK parameter.
One of the steps in the COBDEMO program is an assembly of an assembler program ASBIN25. For some reason the LPAR does not support the UNIT=DISK parameter which is outlined below.
99 XXSYSPRINT DD DSN=&&LST,DISP=(,PASS), 00004300
XX UNIT=DISK,SPACE=(23474,(150,150)), 00004400
The COBDEMO Member HLQ.CAVHJCL(CABADMCJ) executes PROC CABAASMP located in HLQ.CAVHPROC
To resolve the problem the client changed the UNIT= parameter in PROC CABAASMP located in HLQ.CAVHPROC
UNIT=DISK was changed to UNIT=SYSDA in the ASM STEP as outlined below.
/SYSPRINT DD DSN=&&LST,DISP=(,PASS),
// UNIT=SYSDA,SPACE=(23474,(150,150)), < C H A N G E to SYSDA
// DCB=(LRECL=121,BLKSIZE=23474,RECFM=FBA)