Part of the CA Intertest for CICS v10 Installation instructs the end user to define VSAM cluster PROTMLOG. The define cluster contains four allocation types VOLUMES(*), MGMTCLAS($MGMT$), STORCLAS($STOR$) and DATACLAS($DATA$). Which allocation show be used? For example JCL member HLQ.CAVHJCL(DEFMLOG)
DEFINE CLUSTER -
(NAME($PROTMLOG$) -
VOLUMES(*) -
RECORDSIZE(128 4096) -
TRK($PRI$,$SEC$) -
MGMTCLAS($MGMT$) -
STORCLAS($STOR$) -
DATACLAS($DATA$) -
The HLQ.CAVHJCL(DEFMLOG) JCL contains four allocation options. You pick the option that best fits your environment and delete the other three options.
The PROTMLOG file is just a VSAM file. So you just allocate the file at your site like you would any VSAM file. But you have to remove the EXTRA parameters.
The example below allocates the file on a VOLUME SUP010. So parameters MGMTCLAS($MGMT$), STORCLAS($STOR$) and DATACLAS($DATA$) was removed from the JCL before the JCL was submitted.
DELETE INTERT10.GA.PROTMLOG CLUSTER PURGE
SET MAXCC=0
DEFINE CLUSTER -
(NAME(INTERT10.GA.PROTMLOG) -
VOLUMES(SUP010) -
RECORDSIZE(128 4096) -
CYL(1,1) -
INDEXED -
KEYS(48 0) -
FREESPACE(10 10) -
SHAREOPTION(2 3) )