Hi,
you can delete duplicate rows from an internal table with
DELETE ADJACENT DUPLICATES FROM itab COMPARING field1 field2.
For this the table has to be sorted before:
SORT itab BY field1 field2.
Regards,
Klaus
Hi,
you can delete duplicate rows from an internal table with
DELETE ADJACENT DUPLICATES FROM itab COMPARING field1 field2.
For this the table has to be sorted before:
SORT itab BY field1 field2.
Regards,
Klaus