SAP COMPARE TABLE ABEXA

Get Example source ABAP code based on a different SAP table
  


ARTIClE

Comparing Internal Tables
This example demonstrates how internal tables are compared.

ABAP_SOURCE_CODE
ABAP_EXEC

ABAP_DESCRIPTION
Two standard tables, itab and jtab, are created. itab is filled with three rows and assigned to jtab. A further row is added to itab and the first relational expression returns the result that itab is greater than jtab. After the same row has been added to jtab, the second relational expression returns the result that both tables are the same. Another row is added to itab and the third relational expression returns the result that jtab is less than or equal to itab. Next, a further row is added to jtab, the content of which is different from the final row of itab. The next relational expression returns the result that itab is not equal to jtab. The first table field where the contents of itab and jtab differ is col1 in the last row of the table, namely 30 for itab and 50 for jtab. In the last relational expression, itab is therefore less than jtab.