cancel
Showing results for 
Search instead for 
Did you mean: 

Any BAPI to retreive salease area for the given BP Number in CRM

Former Member
0 Kudos
55

Hi, I am looking for a BAPI to retreive sales area information for the given BP number in CRM.

I appreicate for quick response and points are awarded.

Thanks,

Kumar

View Entire Topic
johan_vanzijl
Participant
0 Kudos

Hi Kumar,

This is not exactly a Bapi but you can use the following 2 functions.

The function below will get a list of sales areas assigned to the BP.


call function 'CRM_BUPA_FRG0010_GET_LIST'
    exporting
      iv_partner_guid = lv_partner_guid
    importing
      et_sales_areas  = lt_areas.

You can then use CRM_BUPA_FRG0030_GET_DETAIL to get the detail of the sales area.

Hope it helps.

Johan