‎2007 Aug 21 2:42 PM
hi,
i have internal table with duplicate rows
how to sort that internal table without duplicate rows
without using this statements "SORT" AND "DELETE".
plz could u tell me the logic
‎2007 Aug 21 2:47 PM
Use GOOGLE and search on Bubble Sort for algorithms... then convert the algorithm into ABAP code.
‎2007 Aug 21 2:48 PM
for sorting.
sort itab.
default is ascending.
if you want in the descending,
sort itab descending.
for deleting duplicates.
delete adjacent duplicates.
but this should be done only after sorting.
regards,
srinivas
<b>*reward for useful answers*</b>
‎2007 Aug 21 2:51 PM
first of all understand the question then give the replay
dot give unwanted answers
‎2007 Aug 21 2:53 PM
‎2007 Aug 21 3:05 PM