PreviousNextIndex

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
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

OpenEdge Release 10.2B
Copyright © 2009 Progress Software Corporation
PreviousNextIndex