The client just completed the base install of CA Intertest for CICS r 10. The client is now setting up the demo programs to be used to the IVP of the product install and for education purposes. The assembler demo program ASMDEMO JCL member CABADMAJ fails with message
IEF210I EOT00MAJ ASM ASMDEMO SYSPRINT - UNIT FIELD SPECIFIES INCORRECT DEVICE NAME
The clients LPAR does not allow a device type of UNIT=DISK. The ASMDEMO JCL executes PROC CABAASMP HLQ. CAVHPROC(CABAASMP) which specifies UNIT=DISK as shown below.
//SYSPRINT DD DSN=&&LST,DISP=(,PASS),
// UNIT=DISK,SPACE=(23474,(150,150)),
// DCB=(LRECL=121,BLKSIZE=23474,RECFM=FBA)
Please alter the CABAASMP PROC located in PDS CAVHPROC(CABAASMP) and change UNIT=DISK to UNIT=SYSDA as shown below.
//SYSPRINT DD DSN=&&LST,DISP=(,PASS),
// UNIT=SYSDA,SPACE=(23474,(150,150)),
// DCB=(LRECL=121,BLKSIZE=23474,RECFM=FBA)