The CA Intertest for CICS r 10 assembler demo program ASMDEMO JCL member CABADMAJ fails with message IEF210I.
search cancel

The CA Intertest for CICS r 10 assembler demo program ASMDEMO JCL member CABADMAJ fails with message IEF210I.

book

Article ID: 6365

calendar_today

Updated On:

Products

InterTest - CICS InterTest - Batch InterTest VSE - CICS

Issue/Introduction

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

Environment

Z/OS CICS

Cause

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)

Resolution

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)