SAP LOGEXP RULES OPERANDS ITAB



Get Example source ABAP code based on a different SAP table
  



ABAP_RELEXP - Comparing Internal Tables
Internal tables can be compared with other internal tables if their line types are comparable. Internal tables are compared based on the following hierarchy: The internal table that has more lines than the other internal table is the larger table. Internal tables with the same number of lines are compared line by line. If an internal table contains nested internal tables, these are compared recursively. Two internal tables are identical if the content of each corresponding line matches. If two internal tables are not identical, the first non-matching pair of lines determines the result of the comparison.



Latest notes:

If an internal table with a header line is specified as the operand of an assignment, the header line is addressed in nearly all operand positions and not the table body. To address the table body of a table with a header, [] must be appended to the name.
NON_V5_HINTS
ABAP_HINT_END

ABAP_EXAMPLE_VX5
itab2 is greater than itab1, despite having the same number of lines, because the content of its second line is greater than that of itab1.
ABEXA 01111
ABAP_EXAMPLE_END

ABAP_EXAMPLE_ABEXA
Comparing Internal Tables.
ABAP_EXAMPLE_END