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

same output

Former Member
0 Likes
861

list of output contains same set of entries....how to overcome that???

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
839

Use

Sort it_final.

DELETE ADJACENT DUPLICATES FROM it_final COMPARING ALL FIELDS.

Regards

Kannaiah

6 REPLIES 6
Read only

Former Member
0 Likes
840

Use

Sort it_final.

DELETE ADJACENT DUPLICATES FROM it_final COMPARING ALL FIELDS.

Regards

Kannaiah

Read only

Former Member
0 Likes
839

Try this:

Delete adjacent duplicates from <table name> comparing <key field>.

Read only

Former Member
0 Likes
839

use delete adjacent duplicates before displaying the internal table to list.

Reward point if helpful

Read only

Former Member
0 Likes
839

Hi,

we can delete the duplicate entries from the internal table before displaying.

dont forget to sort the fields before deleting the duplicates.

regards,

teja.

Read only

Former Member
0 Likes
839

instead of different entries same set is repeated number of times in output list

Read only

0 Likes
839

Check for the append statement before appending to internal table.

Check the loop in debugging and sort the internal table.

Delete adjacent duplicates from (final internal table) comparing all fields.

Regards

Kannaiah