MINUTABLE command

From m204wiki
Jump to navigation Jump to search

The MINUTABLE command sets minumum values for user UTABLE resetable parameters. No changes are actually made to the user table settings. However, any subsequent UTABLE or PUSHUTABLE command 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 MINUTABLE command has two optional parameters:

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

Command syntax

The general form of the commands is:

MINUTABLE[Parameters] MINUTABLE LIST MINUTABLE CLEAR

Where:

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

For example:

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