Define the z/VM CF Service Machines to z/OS

Before z/OS® can use the z/VM® Guest Coupling Simulation support, the administrative policy data in the Coupling Facility Resource Manager (CFRM) must be updated to define the CF Service Machines to z/OS. The following is the JCL required to define our sysplex. The sysplex will use two z/VM CF Service Machines. The first CF Service Machine user ID is CFCC1 and the second one is CFCC2.
//IXCCFRMP JOB
//*******************************************************************
//*                                                                 *
//* EXAMPLE JCL TO UPDATE THE ADMINISTRATIVE POLICY DATA IN THE     *
//* COUPLE DATA SET FOR CFRM (COUPLING FACILITY RESOURCE MANAGER)   *
//*                                                                 *
//*******************************************************************
//STEP20   EXEC PGM=IXCMIAPU
//SYSPRINT DD   SYSOUT=A
//SYSABEND DD   SYSOUT=A
//SYSIN    DD   *
 
     DATA TYPE(CFRM) REPORT(YES)
 
     DEFINE POLICY NAME(POLICY1) REPLACE(YES)
 
        CF NAME(CFCC1)
               TYPE(SIMDEV)
               MFG(IBM)
               PLANT(EN)
               SEQUENCE(0000000CFCC1)
               PARTITION(0)
               CPCID(00)
               DUMPSPACE(2000)
 
        CF NAME(CFCC2)
               TYPE(SIMDEV)
               MFG(IBM)
               PLANT(EN)
               SEQUENCE(0000000CFCC2)
               PARTITION(0)
               CPCID(00)
               DUMPSPACE(2000)
 
        STRUCTURE NAME(LIST_01)
               SIZE(10000)
               INITSIZE(1000)
               PREFLIST(CFCC1,CFCC2)
               EXCLLIST(CACHE_01)
 
        STRUCTURE NAME(CACHE_01)
               SIZE(1000)
               REBUILDPERCENT(25)
               PREFLIST(CFCC2,CFCC1)
               EXCLLIST(LIST_01)
The information for TYPE(), MFG(), PLANT(), and SEQUENCE() can be obtained by using the CP QUERY MSGPROC command (see Verify the Sysplex Configuration). The TYPE(). MFG(), and PLANT() information will always be the same when using z/VM Guest Coupling Simulation support. The SEQUENCE() value must be unique and is based on the user ID of the CF Service Machine. For more information about z/VM's fabricated Node Descriptor, Refer to Node Descriptor (ND) Support for the Message Processor.