2007 May 11 1:28 PM
What is the fastest method to delete duplicate records
from an internal table?
2007 May 11 1:29 PM
What is the fastest method to delete duplicate records
from an internal table?
2007 May 11 1:29 PM
2007 May 11 1:29 PM
Using:
<b>SORT ITAB BY MATNR.
DELETE ADJACENT DUPLICATES FROM ITAB BY MATNR</b>
Regards,
Vasanth
2007 May 11 1:29 PM
first sort ur internal table.
then use syntax
<b>delete adjacent duplicates from itab.</b>
2007 May 11 1:30 PM
sort itab by f1 f2.
delete adjacent duplicates from itab comparing f1 f2.
2007 May 11 1:31 PM
Hi,
Sort <table>.
Delete Adjacent Duplicates from <table> comparing <field>.
Regards,
Kiran
2007 May 11 1:31 PM
I wonder if there is any other method other than SORTing and Deleting adjacent duplicates!
| User | Count |
|---|---|
| 6 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |