cancel
Showing results for 
Search instead for 
Did you mean: 

GOA : Mapping condition record between SRM and ECC

Former Member
0 Kudos

Hello Folks,

Would appreciate if anyone can share insight on mapping Contract (specifically in GOAs) condition records to that in ECC system. Equally good, if you can share a step by step configurational steps to achieve this.

Is it achievable without activating any BAdi. (Vanilla SRM)

One more input though, we are on SRM 5.0 with back-end ECC 6.0.

Thank you.

Accepted Solutions (0)

Answers (2)

Answers (2)

former_member195032
Active Contributor
0 Kudos

Implement the BADI BBP_CTR_BE_CREATE.

and map the conditions like done below.

Please see documentation around this BADI.

Regards,Nishant

ls_mapping-cond_type_old = '01CT'.

ls_mapping-cond_type_new = 'PB00'.

APPEND ls_mapping TO lt_mapping.

ls_mapping-cond_type_old = '01RA'.

ls_mapping-cond_type_new = 'RB00'.

APPEND ls_mapping TO lt_mapping.

ls_mapping-cond_type_old = '01RH'.

ls_mapping-cond_type_new = 'RA01'.

APPEND ls_mapping TO lt_mapping.

ls_mapping-cond_type_old = '01RP'.

ls_mapping-cond_type_new = 'RA00'.

Former Member
0 Kudos

hi,

See if the foll BADi helps:

BBP_CTR_MASS_BADI

BR,

Disha.

Former Member
0 Kudos

Hi Disha,

Thank you for your post. That's indeed helpful...

The basic requirement is to check if it would be possible to map SRM (GOA) conditions to that in MM without a BAdi activation. I would be glad to know the configurational steps required to accomplisg this task.

Please advice.