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

Duplicate entries in table

Former Member
0 Likes
618

Hi,

I am using a standard function module, BBP_GET_BOBUSERS_F4. However, after the execution, im getting duplicate entries in my table.

Please suggest cause and solution.

Thanks,

Prisford Pereira.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
567

Hi,

To remove duplicate entries try the following piece of code-

SORT the internal table entries BY <field name>.

DELETE ADJACENT DUPLICATES FROM internal table COMPARING <field name>.

Hi,

I am using a standard function module, BBP_GET_BOBUSERS_F4. However, after the execution, im getting duplicate entries in my table.

Please suggest cause and solution.

Thanks,

Prisford Pereira.

2 REPLIES 2
Read only

Former Member
0 Likes
567

Hi,

Please be more specific about your Requirement.

Are you passing any entries into this function Module.? What are those values?

With Regards,

Sumodh.P

Read only

Former Member
0 Likes
568

Hi,

To remove duplicate entries try the following piece of code-

SORT the internal table entries BY <field name>.

DELETE ADJACENT DUPLICATES FROM internal table COMPARING <field name>.