Example 1: Removing a SYSMOD from HOLDUSER status

Here is an example of a ++HOLD statement that holds the PTF until after some event (such as new hardware) occurs:
++HOLD    (UZ12345)         /* Put this PTF             */
          FMID(FXY1040)     /* for this function        */
          USER              /* into hold user status    */
          REASON(CPU0A)     /* for CPU 0A update.       */
          COMMENT(I DO NOT WANT THIS TO GO ON
                  UNTIL AFTER THE CPU CHANGE)  /*       */.
When the CPU change is made, the following sample ++RELEASE statement allows the PTF to be installed:
++RELEASE (UZ12345)         /* Remove this PTF          */
          FMID(FXY1040)     /* for this function        */
          USER              /* from hold user status    */
          REASON(CPU0A)     /* for CPU 0A update.       */.

That PTF is now eligible for normal installation.