Wrong Logical Operators in the WHERE Clause

The logical operators >< , =< and => are not allowed in ABAP Objects.

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

Overview:

Replacement for Obsolete Statements ABAP Objects