Be aware that CICS storage protection cannot be used with CA Dispatch. Make the following program and transaction changes to allow the CA Dispatch CICS interface to function in an environment where CICS storage protection has been established.
There are two CICS STARTUP parameters, RENTPGM and STGPROT for the CICS storage protect feature. The following procedures will avoid DFHSR0622 and DFHSR0001 errors for CADSINTC and VCICICS when RENTPGM and STGPROT parameters are used.
Modify your CICS program and Transaction definitions as follows:
DFHPCT TYPE=ENTRY,
TRANSID=DSP1,
PROGRAM=CADSINTC,
TASKDATAKEY=CICS
DFHPCT TYPE=ENTRY,
TRANSID=DSP2,
PROGRAM=VCICICS,
TASKDATAKEY=CICS,
TWASIZE=400
DFHPPT TYPE=ENTRY,PROGRAM=CADSINTC,RES=YES,RELOAD=NO,
LANG=ASSEMBLER,EXECKEY=CICS
DFHPPT TYPE=ENTRY,PROGRAM=VCICICS,RES=NO,RELOAD=NO,
LANG=ASSEMBLER,EXECKEY=CICS
//*--------------------------------------------------------------- //RELINK EXEC PGM=IEWL, // PARM='XREF,LET,LIST,NCAL,NORENT', // REGION=1024K //SYSPRINT DD SYSOUT=* //SYSLIN DD DDNAME=SYSIN //SYSLIB DD DSN=CAI.CADSLOAD,DISP=SHR //SYSUT1 DD DSN=&&SYSUT1,UNIT=SYSDA,SPACE=(1024,(50,20)) //SYSLMOD DD DSN=CAI.CICS41.CAILIB,DISP=SHR << should this be changed? >> //SYSIN DD * INCLUDE SYSLIB(CADSINTC) ENTRY STARTUP MODE AMODE(31),RMODE(24) NAME CADSINTC(R) INCLUDE SYSLIB(VCICICS) ENTRY VCICICSE MODE AMODE(31),RMODE(24) NAME VCICICS(R) /*
|
Copyright © 2011 CA.
All rights reserved.
|
|