Application Development 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: 

BAPI_CUSTOMER_FIND

Former Member
0 Kudos

Hi all!

When I execute that function, the values in SELOPT_TAB are added... I mean, if I indicate TELF - 93* and NAME1 - A, the function gives the sum of the two conditions. How can I do to exclude the results?? I mean, that only gives me that customers that have 93* AND A.

Thanks!

Miguel angel.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

Select ...
          from .....
          into .....
          where telfx in so_telfx
          and name1 in so_name1.

You could write a select statement on your own instead of using the BAPI.

Select adress number from KNA1.

Based on the address numbers select data from ADRC with the select options that you want to restrict.

Regards,

Srilatha.

1 REPLY 1

Former Member
0 Kudos

Hi,

Select ...
          from .....
          into .....
          where telfx in so_telfx
          and name1 in so_name1.

You could write a select statement on your own instead of using the BAPI.

Select adress number from KNA1.

Based on the address numbers select data from ADRC with the select options that you want to restrict.

Regards,

Srilatha.