During the installation process, the CICS utility DFHCSDUP is used to add the required definitions to the CSD file. Transaction class definitions are being added in release r13.7 so that the following transaction IDs can only be executed one at a time.
The following sample library member is available as input to the DFHCSDUP utility:
Transaction Classes:
The transaction class definitions are new in release r13.7.
DEFINE TRANCLASS(GSVCGSVS)
MAXACTIVE(01)
PURGETHRESH(01)
GROUP(SYSVIEW)
DEFINE TRANCLASS(GSVCGSVI)
MAXACTIVE(01)
PURGETHRESH(01)
GROUP(SYSVIEW)
Transactions:
The TRANCLASS(class) attribute is being added to the previously existing transaction definitions.
DEFINE TRANSACTION(GSVI)
PROGRAM(GSVCGSVI)
TASKDATAKEY(CICS)
TASKDATALOC(BELOW)
SHUTDOWN(ENABLED)
RUNAWAY(0)
PRIORITY(255)
ISOLATE(NO)
TRANCLASS(GSVCGSVI)
GROUP(SYSVIEW)
DEFINE TRANSACTION(GSVS)
PROGRAM(GSVCGSVS)
TASKDATAKEY(CICS)
TASKDATALOC(BELOW)
SHUTDOWN(ENABLED)
RUNAWAY(0)
PRIORITY(255)
ISOLATE(NO)
TRANCLASS(GSVCGSVS)
GROUP(SYSVIEW)
DEFINE TRANSACTION(GSVT)
PROGRAM(GSVCGSVT)
TASKDATAKEY(CICS)
TASKDATALOC(BELOW)
SHUTDOWN(ENABLED)
RUNAWAY(0)
PRIORITY(255)
ISOLATE(NO)
TRANCLASS(GSVCGSVS)
GROUP(SYSVIEW)
|
Copyright © 2013 CA.
All rights reserved.
|
|