Example 1: Connecting an OPTIONS entry to UTILITY entries

Assume that you have set up three UTILITY entries: IEUASM, IEWL, and MYX37. For examples of setting up these entries, see UTILITY entry (global zone). Now you want to define an OPTIONS entry, OPT1, that will be used during APPLY processing. The following UCL can be used to set up that entry:
SET      BDY(GLOBAL)        /* Set to global zone.        */.
UCLIN                       /*                            */.
ADD      OPTIONS(OPT1)      /* New OPTIONS entry.         */
         ASM(IEUASM)        /* Connect to assembler data. */
         LKED(IEWL)         /* Connect to link data.      */
         RETRY(MYX37)       /* Connect to retry.          */
                            /*                            */.
ENDUCL                      /*                            */.

To use the OPTIONS entry, you need either to define it as the default OPTIONS entry for the desired GLOBALZONE, DLIBZONE, or TARGETZONE entry, or to specify it on the OPTIONS operand of the SET command for the zone you want to process with these values.