‎2008 Jun 25 11:13 AM
list of output contains same set of entries....how to overcome that???
‎2008 Jun 25 11:14 AM
Use
Sort it_final.
DELETE ADJACENT DUPLICATES FROM it_final COMPARING ALL FIELDS.
Regards
Kannaiah
‎2008 Jun 25 11:14 AM
Use
Sort it_final.
DELETE ADJACENT DUPLICATES FROM it_final COMPARING ALL FIELDS.
Regards
Kannaiah
‎2008 Jun 25 11:14 AM
Try this:
Delete adjacent duplicates from <table name> comparing <key field>.
‎2008 Jun 25 11:15 AM
use delete adjacent duplicates before displaying the internal table to list.
Reward point if helpful
‎2008 Jun 25 11:16 AM
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.
‎2008 Jun 25 11:17 AM
instead of different entries same set is repeated number of times in output list
‎2008 Jun 25 11:33 AM
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