2008 Aug 24 1:57 PM
2008 Aug 24 2:08 PM
Hi
First sort the internal table then use
To delete adjacent duplicate entries use the following statement:
DELETE ADJACENT DUPLICATE ENTRIES FROM <itab>
Regards
pavan
2008 Aug 24 2:08 PM
Hi
First sort the internal table then use
To delete adjacent duplicate entries use the following statement:
DELETE ADJACENT DUPLICATE ENTRIES FROM <itab>
Regards
pavan
2008 Aug 24 2:36 PM
Hi,
sort your <itab> with key fields.
Delete adjacent duplicate entries from <itab> comparing all fields.
2008 Aug 24 4:44 PM
hi,
To delete adjacent duplicate entries use the following statement:
DELETE ADJACENT DUPLICATE ENTRIES FROM <itab>
[COMPARING <f1> <f 2> ...
|ALL FIELDS].
for more information and sample program follow this link.....
http://help.sap.com/saphelp_nw04/Helpdata/EN/06/aafd54fc4011d195280000e8353423/content.htm
regards,
Ashok
2008 Aug 24 5:16 PM