Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

regardin function module s

Former Member
0 Likes
607

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

5 REPLIES 5
Read only

Former Member
0 Likes
587

Use GOOGLE and search on Bubble Sort for algorithms... then convert the algorithm into ABAP code.

Read only

Former Member
0 Likes
587

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>

Read only

0 Likes
587

first of all understand the question then give the replay

dot give unwanted answers

Read only

0 Likes
587

LOL !!!

Read only

Former Member
0 Likes
587

Hi,

It is not possible.

Reward if useful!