SAP NetWeaver AS ABAP Release 740, ©Copyright 2014 SAP AG. All rights reserved.
Wrong Logical Operators in the WHERE Clause
Error message in ABAP Objects for:
... >< ... =< ... => ...
Correct syntax:
... <> ... <= ... >= ...
Reason:
These operators for not equal, less than or equal and greater than or equal are superfluous. They have the same function as <>
, <= and >= (or NE, LE and GE).