2006 Aug 18 12:31 PM
hi experts,
i have fetched some values into internal table
along with these values some duplicate values are also coming and i want to delete them
how can i do this
i have used the code 'delete adjecent dulicate values'
still the problem is not solved
guide me
regards
siri
2006 Aug 18 12:33 PM
I hope you are sorting the internal table before the delete statement ...else you can also try the variation for delete comparing fields f1...
hi experts,
i have fetched some values into internal table
along with these values some duplicate values are also coming and i want to delete them
how can i do this
i have used the code 'delete adjecent dulicate values'
still the problem is not solved
guide me
regards
siri
2006 Aug 18 12:32 PM
You have to use SORT ITAB BY FIELDS
before calling the DELETE ADJACENT DUPLICATES.
Chers
VJ
2006 Aug 18 12:33 PM
you have to use
SORT ITAB.
DELETE ADJACENT DUPLICATES FROM ITAB.
Press F1 on DELETE and examine the option of COMPARING when deleteing adjacent duplicates from an itab.
~Suresh
2006 Aug 18 12:33 PM
I hope you are sorting the internal table before the delete statement ...else you can also try the variation for delete comparing fields f1...
2006 Aug 18 1:13 PM
2006 Aug 18 1:03 PM
Hi,
Use this
sort <internal table> by <field>.
Delete adjacent duplicate values from itab comparing <field1> <field2>
or
Delete adjacent duplicate values from itab comparing all fields.
regards,
Pavan.
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |