MANDATORY |
|
|
The MANDATORY keyword is used in combination with input parameters to a function to support forced parameter.
This is a simple example of using the MANDATORY keyword:
FUNCTION TEST;
The TEST function declares that v1 and v2 must always be assigned by the caller and v3 is optional and if not assigned it will contain the default value of 17. |