on ‎2021 Mar 30 9:16 AM
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.
Request clarification before answering.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.
Hi smallick2018,
I'm facing same issue. Did you resolved ?
If resolved, Kindly update the solution.
Thanks
Balakrishna G
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 12 | |
| 7 | |
| 4 | |
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.