LE or < = operator

Returns a TRUE value if the first of two expressions is less than or equal to the second.

Syntax

expression { LE | <= } expression
expression
A constant, field name, variable name, or expression. The expressions on either side of the LE or < = must be of the same data type, although one can be integer and the other decimal.

Example

This procedure lists all the items with zero or negative on-hand quantities:

r-le.p

FOR EACH Item WHERE Item.OnHand <= 0:
  DISPLAY Item.ItemNnum Item.ItemName Item.OnHand.
END.

Notes