cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Moving customer from ERP to decentralized EWM in S/4HANA

former_member585436
Participant
4,211

capture.jpgHello All,

I am moving customers, vendors, and materials from ERP to decentralized EWM residing on S/4HANA using transaction code BD12/BD14 and BD10 respectively.

For a few customers, I am getting a dump which is attached herewith.

Moreover, the account group and bp grouping is maintained in table TBD0001.

Can someone please help me with this issue.

Regards.

dump-short-en.txt

Accepted Solutions (1)

Accepted Solutions (1)

Dominik_Tylczynski
SAP Champion
SAP Champion
0 Likes

Hello smallick2018

Consider the note 1908711 - Dump ASSERTION_FAILED occurs when saving BP

It describes the problem, cause and resolution. It's about missing mapping of BP groups and account groups in V_TBD001 and V_TBC001 views.

Best regards

Dominik Tylczynski

former_member585436
Participant
0 Likes

Hello Dominik,

I have already gone through the note and the settings are in place.

On debugging bupa_get_central_details I was informed by the abap team that the system is returning the group IMMO after taking the partner I'd.

The account group of the customer is YINC . I do know what is IMMO.

Any further inputs will be highly appreciated.

Regards.

Answers (3)

Answers (3)

0 Likes

Hi smallick2018,

I'm facing same issue. Did you resolved ?

If resolved, Kindly update the solution.

Thanks

Balakrishna G

Dominik_Tylczynski
SAP Champion
SAP Champion
0 Likes

Hello smallick2018

I'm not quite sure where IMMO group is coming from as I don't have access to your system. You've mentioned IMMO that was identified by your ABAP team. I'm positive they can identify the source of IMMO by debugging IDoc processing. The group is determined at the beginning of CVI_KA_BP_CUSTOMER=>CHECK_ID_FOR_NEW_CUSTOMER method:

  lv_group = i_group.
  if i_group is not supplied.
    call function 'BUPA_CENTRAL_GET_DETAIL'
      exporting
        iv_partner = i_partner_id
      importing
        ev_group   = lv_group.
  endif.

  ls_tbd001 = get_tbd001_line( lv_group ).
  ls_t077d  = get_t077d_line( ls_tbd001-ktokd ).

The function BUPA_CENTRAL_GET_DETAIL determines lv_group = IMMO. The get_tbd001_line method reads BP group to account group mapping as maintained in V_TBD001. In your case this mapping is not customized. Therefore ls_tbd001-ktokd is initial and then you get the dump in get_t077d_line method call.

Best regards

Dominik Tylczynski

Dominik_Tylczynski
SAP Champion
SAP Champion
0 Likes

Hello smallick2018

IMMO "Real Estate" is a business partner group. I'd quite sure V_TBD001 lacks mapping of IMMO to a customer account group. Check it in SM30.

Best regards

Dominik Tylczynski

former_member585436
Participant
0 Likes

Hello Dominik,

Thanks for your response.

But why do I need to map account group to BP group IMMO which is for Real Estate when my client is a manufacturing company and has nothing to do with Real Estate.

A clarification from your end will be highly appreciated.