Introduction:
The client would like sample JCL to assemble and relink the CA Intertest for CICS r 9.1 IN25OPTS options module. The CA Intertest for CICS options are controlled by the IN25OPTS module. The dataset naming conventions for the product install has changed in release r 9.1 so some of the library names in the assembly and link edit have changed. Also in release r 9.1 the load module no longer have an alias that represents the CICS level. The IN25OPTS module is simply linked as IN25OPTS. In release 8.5 you would have to link the IN25OPTS module as IN67OPTS for CTS 4.2 and IN69OPTS for CTS 5.1.
Instructions:
The IN25OPTS parameters are outlined in the Installation Guide Chapter 7: Options
Section
Procedure for Modifying Options
CA InterTest for CICS installation options are contained in the IN25OPTS load module. You can change option settings easily by changing the load module without recompiling CA InterTest for CICS programs.
Below is sample JCL that can be used to turn off the DB2 capture XRMIO=NO. You can substitute the parameter you want to change or change multiple options at the same time.
//JOBCARD
//IN25OPTS EXEC PGM=ASMA90,
// REGION=1024K,
// PARM='XREF(SHORT),DECK,OBJECT,TERM'
//SYSLIB DD DSN=CICS.SDFHMAC,DISP=SHR
// DD DSN=HLQ.CABAMAC,DISP=SHR
// DD DSN=SYS1.MACLIB,DISP=SHR
// DD DSN=SYS1.AMODGEN,DISP=SHR
/*
//SYSUT1 DD DSN=&SYSUT1,SPACE=(1024,(120,120),,,ROUND),UNIT=VIO,
// DCB=BUFNO=1
//SYSPUNCH DD SYSOUT=B
//SYSTERM DD SYSOUT=*
//SYSPRINT DD SYSOUT=*
//SYSLIN DD DSN=&OBJ,SPACE=(3040,(40,40),,,ROUND),UNIT=VIO,
// DISP=(MOD,PASS),
// DCB=(BLKSIZE=3040,LRECL=80,RECFM=FBS,BUFNO=1)
//SYSIN DD *
IN25OPTS TYPE=CSECT, X
XRMIO=NO
IN25OPTS TYPE=FINAL
END
/*
//LINKED EXEC PGM=IEWL,
// PARM='LIST,LET,XREF,MAP'
//SYSPRINT DD SYSOUT=*
//SYSLIN DD DSN=&OBJ,DISP=(OLD,PASS)
// DD DDNAME=SYSIN
//SYSLMOD DD DSN=HLQ.CABALOAD,DISP=SHR
//SYSUT1 DD DSN=&SYSUT1,SPACE=(1024,(120,120),,,ROUND),UNIT=VIO,
// DCB=BUFNO=1
//SYSIN DD *
ENTRY IN25OPTS
NAME IN25OPTS(R)
//
Additional Information:
Please see the CA Intertest for CICS Installation guide.