SAP OO OBS RANGES 1

Get Example source ABAP code based on a different SAP table
  


ABAP Code Snippet
ARTICLE

Cannot Use RANGES
This statement creates a special table with a header line and as such is not allowed in ABAP Objects.

In ABAP Objects, the following statement causes an error message:

RANGES rangetab FOR f.
Correct syntax:

DATA rangetab TYPE|LIKE RANGE OF ...
Cause:

Tables with a header are not allowed in ABAP Objects; declare your table using permitted statements instead.