SAP NetWeaver AS ABAP Release 740, ©Copyright 2014 SAP AG. All rights reserved.
Incorrect Logical Operators
In ABAP Objects, the following statement causes an error message:
... >< ... =< ... => ...
Correct syntax:
... <> ... <= ... >= ...
Cause:
These operators for not equal to, less than or equal to, and more than or equal to. <>
, <=, and >= perform the same function. (as do NE, LE, and GE).