Example: Adding a new data element entry

Assume you have installed CLIST3 outside of SMP/E, but now you want to start using SMP/E to track changes to that CLIST. Here is an example of the UCL statements you would use to define entries for that CLIST in the appropriate target and distribution zones:
SET      BDY(TGT1)          /* Set to target zone.      */.
UCLIN                       /*                          */.
ADD      CLIST(CLIST3)      /* Define new CLIST entry.  */
         DISTLIB(AMACLIB)   /* Define DLIB.             */
         SYSLIB(ISPCLIB)    /* System library.          */
         FMID(MYCLST1)      /* Functional owner.        */.
ENDUCL                      /*                          */.
SET      BDY(DLB1)          /* Now do same to DLIB.     */.
UCLIN                       /*                          */.
ADD      CLIST(CLIST3)      /* Define new CLIST entry.  */
         DISTLIB(AMACLIB)   /* Define DLIB.             */
                            /* no SYSLIB info in DLIB.  */
         FMID(MYCLST1)      /* Functional owner.        */.
ENDUCL                      /*                          */.