Code: Alles auswählen.
sort tab1. sort tab2.
loop at tab1 into w1.
read table tab2 into w2 with key feld1 = w1-feld1.
if sy-subrc ne 0.
append w1 to difftab.
elseif w1 <> w2.
append w1 to difftab.
endif.
endloop.
loop at tab2 into w2.
read table tab1 into w1 with key feld1 = w2-feld1.
if sy-subrc ne 0.
append w2 to difftab.
endif.
endloop.
Einträge aus 2 DB-Tabellen?LordDeath hat geschrieben:Ich will 2 Tabellen vergleichen und dabei sollen nur die einträge in eine interne Tabelle die unterschiedlich sind !!!