Previous Topic: CALC078ENext Topic: CALC080E


CALC079E

Invalid relational operator for range comparison

Reason:

There was an invalid range test in a logical expression. The two fields or values specified in a range test must be in an equal (=), or not equal (NOT =) relationship with each other. The relational operators (>), (<), (>=), or (<=) are not allowed in a range test. Valid range tests are as follows, where (=) is implicit and not required:

SELECT FLDA (A-B)
 GOTO LBLA FLDB (99-106)
 GOTO LBLB FLDC NOT (B-C)
 SELECT FLDD NOT (400-500)

Action:

Use only = or NOT =.