cancel
Showing results for 
Search instead for 
Did you mean: 

BAPI for advanced BP search

Former Member
0 Kudos

Hi

I am a developer in XI and I need to find a BP from CRM based on information in the identification tab. I have searched in the ABAP workbench but so far I have found nothing.

Could anybody suggest a BAPI name or where ad what to look for?

I have also thought that if there is support for such a search in GUI, then there must be some function modules in the ABAP code that implement such a search but I am not able to locate which function does the BP locator (or Open dialog) use for searching BPs.

Thanks for any input,

Heiko

Accepted Solutions (0)

Answers (1)

Answers (1)

sudheer-tammana
Advisor
Advisor
0 Kudos

Hi Heiko,

Check if the BAPI 'BAPI_BUPA_SEARCH_2' can help.

Regards,

Sudheer.

Former Member
0 Kudos

Thanks. But there is no parameters in the search bapi's for information on BP identification tab.

What I would need, is a BAPI thats supports at least id-type and id-value as input parameters.

Anything else?

Heiko

Former Member
0 Kudos

Hi,

I never came across any BAPI for that. But you can do so by using a simple SELECT statment.

SELECT SINGLE PARTNER FROM BUT0ID INTO W_BP

WHERE TYPE = <id type>

AND IDNUMBER = <id number>.

If you want then you can create a function module for this.

Regards,

AMit

Message was edited by:

Amit Kumar

Former Member
0 Kudos

Thanks. Is there a way to find out what function are used in GUI for searching for partner within identity tab information? I have seen some SAP consultants open some dialogue properties window and some program-names could be taken from there... any hints?