Adding a new APPLID to the DADS Plus for CICS batch interface file DADSBIF
search cancel

Adding a new APPLID to the DADS Plus for CICS batch interface file DADSBIF

book

Article ID: 51090

calendar_today

Updated On:

Products

DADS Plus

Issue/Introduction

In order to use the DADS Plus for CICS batch interface facility, an APPLID record for the CICS region in question must be defined in the batch interface file FCT DADSBIF. The APPLID record contains the batch interface parameters that will be used to process batch requests in the CICS region.

Resolution

The following sample JCL uses batch utility program DADBBIS to create APPLID TSTAPPLE in the DADSBIF file. The JCL also sets the GROUPID parameter to GROUPTST. The default for this parameter is spaces. If a parameter is not defined on the FUNCTION=ADD control statement it will be set to the default value. See chapter 12 of the DADS Plus for CICS User guide for further information on the DADBBIS utility program. When adding an APPLID to the batch interface file, the DADSBIF does NOT have to be closed if CICS is active.

JOBCARD
//ADDAPPLE EXEC PGM=DADBBIS,REGION=700K 
//STEPLIB   DD DSN=DADSPL40.LOADLIB,DISP=SHR
//DADSBIF   DD DSN=HLQ.CICS65.DADSBIF,DISP=SHR
//SYSPRINT  DD SYSOUT=A,DCB=(LRECL=133,RECFM=FBA,BLKSIZE=133)
//SYSIN DD *
  FUNCTION=ADD,APPLID=(TSTAPPLE,QUEUE),
  GROUPID=GROUPTST
//