Conditions Relating to the Target Release

*VxRxMx
This condition is defined if your program is being compiled for a version that is greater than or equal to the release in the condition, starting with *V4R4M0 (Version 4 Release 4 Modification 0).

Use this condition if you will run the same program on different target releases, and want to take advantage of features that are not available in every release. Support for this condition is available starting with *V4R4M0 systems with the appropriate PTF installed.

      /IF DEFINED(*V5R1M0)

      * Specify code that is valid in V5R1M0 and subsequent releases

     I/INCLUDE SRCFIL,MBR2

      /ELSE
      * Specify code that is available in V4R4M0

     I/COPY SRCFIL,MBR2

      /ENDIF