Example: Defining a ZONESET entry

Assume that you have a system with four target zones: BP111, PROD111, BP999, and PROD999. BP111 and BP999 define two different base control programs. PROD111 and PROD999 are two versions of the same product that must be synchronized with each other and with their base control programs (PROD111 with BP111 and PROD999 with BP999). To keep service for these products at the same level, you can group BP111, PROD111, and PROD999 in one ZONESET (S111) and BP999, PROD999, and PROD111 in a second ZONESET (S999). The following UCL will define the ZONESET entries:
SET      BDY(GLOBAL)        /* Set to global zone.      */.
UCLIN                       /*                          */.
ADD      ZONESET(S111)      /* ZONESET S111.            */
         ZONE(BP111,        /* Include these target     */
              PROD111,      /* zones.                   */
              PROD999)      /*                          */
                            /*                          */.
ADD      ZONESET(S999)      /* ZONESET S999.            */
         ZONE(BP999,        /* Include these target     */
              PROD999,      /* zones.                   */
              PROD111)      /*                          */
                            /*                          */.
ENDUCL                      /*                          */.