Page History
8.2 Function Libraries
An alternative way of using Intrinsic Functions is to import function libraries. Function Libraries are a component that contains a set of routines defined using the MthRoutine command. These function library routines can be used in expressions.
...
For example the Uppercase method:
#Subject.Uppercase()is specified as:
Uppercase( Subject )Function libraries are introduced into an RDMLX object by the IMPORT command which is specified immediately after the FUNCTION statement. For example:
Function Options(*DIRECT)
* Import the variant library #prim_libv.
Import Libraries(#PRIM_LIBV)
...