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
690

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
668

Use

Sort it_final.

DELETE ADJACENT DUPLICATES FROM it_final COMPARING ALL FIELDS.

Regards

Kannaiah

6 REPLIES 6
Read only

Former Member
0 Likes
669

Use

Sort it_final.

DELETE ADJACENT DUPLICATES FROM it_final COMPARING ALL FIELDS.

Regards

Kannaiah

Read only

Former Member
0 Likes
668

Try this:

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

Read only

Former Member
0 Likes
668

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

Reward point if helpful

Read only

Former Member
0 Likes
668

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
668

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

Read only

0 Likes
668

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