DDOL ISQL fails with Transaction 'DISP' is not recognized.
search cancel

DDOL ISQL fails with Transaction 'DISP' is not recognized.

book

Article ID: 276184

calendar_today

Updated On:

Products

Datacom/DB

Issue/Introduction

Each function in Datacom Datadictionary Online (DDOL) Interactive SQL Service Facility (ISQL) fails with 

 DFHAC2001 date time CICS name Transaction 'DISP' is not recognized
  Check that the transaction name is correct.  

Environment

z/OS 

CICS

Datacom 15.1 

Cause

SMP/E HOLD ACTION of LU07676 has not been performed.

Resolution

Perform the HOLD ACTION.  

 

Additional Information

The HOLD ACTION is this:

**************************
* STEPS TO PERFORM         *
**************************

1. Customers should review their CUSMAC (DDSYSTBL) source against the
new CABDSAMP (DDSYSTBL) source, and update it accordingly.
2. After the update is made to CUSMAC, customers should run the JCL
provided to assemble/link DDSRTLM into CUSLIB:

//JOBCARD
//*
// SET BDCML='CAI.NEWHLQ.9CXX_NAME.V151.CUSMAC'
// SET BDCLL='CAI.NEWHLQ.9CXX_NAME.V151.CUSLIB'
// SET BDTML='CAI.THLQ.CABDMAC'
// SET BDTLL='CAI.THLQ.CABDLOAD'
// SET VQTML='CAI.THLQ.CAVQMAC'

//*

//ASMSTP EXEC PGM=ASMA90,PARM='DECK,NOOBJECT',REGION=2M
//SYSLIB DD DISP=SHR,DSN=&BDTML
// DD DISP=SHR,DSN=&VQTML
// DD DSN=SYS1.MACLIB,DISP=SHR
//SYSUT1 DD UNIT=&WORK,SPACE=(1700,(400,400))
//SYSUT2 DD UNIT=&WORK,SPACE=(1700,(400,400))
//SYSUT3 DD UNIT=&WORK,SPACE=(1700,(400,400))
//SYSPUNCH DD DSN=&&ASMOBJ,UNIT=SYSDA,DISP=(,PASS),
// SPACE=(3120,(400,100),RLSE),DCB=BLKSIZE=3120
//SYSPRINT DD SYSOUT=*
//SYSIN DD DISP=SHR,DSN=&BDCML(DDSYSTBL)
//*
//LNKSTP EXEC PGM=IEWL,COND=(5,LT,ASMSTP),REGION=2M,
// PARM='LIST,LET,XREF,MAP,NCAL,REUS(SERIAL)'
//SYSLIN DD DSN=&&ASMOBJ,DISP=(OLD,DELETE)
// DD DDNAME=SYSIN
//SYSLMOD DD DISP=SHR,DSN=&BDCLL
//SYSUT1 DD UNIT=&WORK,SPACE=(1024,(100,50))
//SYSPRINT DD SYSOUT=*
//SYSLIB DD DISP=SHR,DSN=&BDTLL
//*
//SYSIN DD *
INCLUDE SYSLIB(DDCLLPR)
ORDER DDSYSTBL,DDCLLPR
ENTRY DDSYSTBL
MODE AMODE(31),RMODE(24)
NAME DDSRTLM(R)
/*
//

3. Customers should update their DFHCSD to add the new DDSQ transaction
to the proper group that is already installed in their CICS regions.
This is done with the following JCL:
//JOBCARD
//*
// EXPORT SYMLIST=(*)
// SET BDCSD=YOUR.CICS.DFHCSD

// SET CICSL=YOUR.CICS.SDFHLOAD
//*
//* Enter CICS/DFHCSD details for the existing SCFD transaction -
//* either AD15GRP (normal use) or AD15TOR (MRO config)
//* and profile AD15PRF (normal use) or AD15MRO (MRO config)
// SET CSDGRP=AD15GRP (or AD15TOR for MRO)
// SET CSDPRF=AD15PRF (or AD15MRO for MRO)
//*
//CSDTBL EXEC PGM=DFHCSDUP,REGION=2M
//STEPLIB DD DISP=SHR,DSN=&CICSL
//DFHCSD DD DISP=SHR,DSN=&BDCSD
//SYSPRINT DD SYSOUT=*
//SYSIN DD *,SYMBOLS=JCLONLY
DEFINE TRANSACTION(DDSQ) PROGRAM(SC00DISP)
GROUP(&CSDGRP) TWASIZE(64) PROFILE(&CSDPRF)
PRIORITY(001) SPURGE(YES) TASKDATALOC(BELOW)
/*
//

#4. Following the above two changes, the CICS region must be recycled to
load the changed resident module DDSRTLM.