MINUGLOBAL command

From m204wiki
Jump to navigation Jump to search

The MINUGLOBAL command sets minumum values for all UTABLE resetable parameters. No changes are actually made to any user table settings. However, any subsequent UTABLE or PUSHUTABLE command by any user will honor the minimum value and if the defined value is less than the defined minimum, the value will be increased to the minimum value. Note: MINUTABLE takes precedence over any MINUGLOBAL minimum value.

The MINUGLOBAL command has two optional parameters:

  • LIST Lists the defined global minimums.
  • CLEAR Clears all defined global minimums.

Command syntax

The general form of the commands is:

MINUGLOBAL[Parameters] MINUGLOBAL LIST MINUGLOBAL CLEAR

Where:

  • Parameters are simply the values one would specify on a RESET command.

For example:

MINUGLOBAL LVTBL 2000 PUSHUTABLE LVTBL 1000 (LVTBL will be set to 2000) begin ... procedure code end