PreviousNextIndex

LT or < operator

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

Syntax

expression { LT | < } expression 

expression
Example

This procedure displays information for those Item records whose OnHand value is less than the Allocated value:

r-lt.p
FOR EACH Item NO-LOCK WHERE Item.OnHand < Item.Allocated: 
  DISPLAY Item.ItemNum Item.ItemName Item.OnHand Item.Allocated. 
END. 

Notes

OpenEdge Release 10.2B
Copyright © 2009 Progress Software Corporation
PreviousNextIndex