cancel
Showing results for 
Search instead for 
Did you mean: 

Partner number for Address Number

former_member348740
Participant
0 Kudos

Hi All,

I am trying to upload the Shopping Carts From Excel Spread Sheet to SRM (Version 4.0).

I did every thing. But I got struck while mapping Ship To Address Partner Structure.

I will get Address Number from the Requester (User) deatils or input Excel File. When I am trying to map input data to the structure I_PARTNER for the function module BBP_PD_SC_UPDATE, Partner Number mapping is required.

Sample Code:

In data declaration

< i_partner_struct type BBP_PDS_PARTNER. >

Mapping

i_partner_struct-P_GUID = i_item_struct-guid.
      i_partner_struct-PARTNER_FCT = '00000027'.
      i_partner_struct-ADDR_NO = address_no_file.
      i_partner_struct-PARTNER_NO = ship_to_guid.

Could you please let me know how I can get the Partner number for the given Address Number (from which table or function module) based on Address Number.

Thank you so much in advance.

Best Regards,

Sudarsan

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

See these related threads for more pointers:

BR,

Disha.

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

You can get the partner no from the address number from the table CRMD_PARTNER.

Just pass the address no to the field "ADDR_NR" and you will get the partner no in the field "PARTNER_NO".

BR,

Disha.

former_member348740
Participant
0 Kudos

Hi Disha,

I tried to get the "PARTNER_NO" from table CRMD_PARTNER based on "ADDR_NR". But I am facing the performance problem because ADDR_NR is not the key field in the CRMD_PARTNER table.

Please suggest me is there any other procedure to get PARTNER_NO for the given ADDR_NO.

Thanks,

Sudarsan