cancel
Showing results for 
Search instead for 
Did you mean: 

Middleware debugg from R3 to CRM

Former Member
0 Kudos

Hi guys, i need your help.

I need to send  the value a Z field from R3 to CRM, and let me know how to make a debugg to the middleware to see where is the BAPIMTCS structure filled and so add the z field in my replication and send to the data.

The object to the replicated is:CUSTOMER_MAIN.

I hope can you help me.
Regards.

Accepted Solutions (0)

Answers (2)

Answers (2)

0 Kudos

Hi,

If it is the replication from ERP customer to CRM BP, you can check the BAPIMTCS getting set at FM PI_BP_MAIN_TO_BAPIMTCS. In this module each and every data set concerned from customer will be mapped to the BAPIMTCS structure to be transferred to the CRM system.

If you need to replicate the Z fields from ERP to CRM, use the event DE_EIOUT and register a Z module to populate these fields and map into the corresponding BAPIMTCS. In this way you can able to send the Z data from ERP to CRM system. I hope this helps.

Regards,

Venkat

Former Member
0 Kudos

Hi

OLTP

            A generic BAPIMTCS mapper that you can use to map customer data. This mapper consists of the two function modules COM_BUPA_SET_TO_BAPIMTCS and COM_BUPA_BAPIMTCS_TO_SET.

           These modules map any complex structures in BAPIMTCS tables and vice versa. For this, the underlying DDIC structures must be identical on both sides.

Using the IV_APPLICATION import parameter, you can define a key to an enhancement, which speeds up and simplifies the mapping process in particular if there are several enhancements.

For application examples for these function modules, refer to Notes 833585, 863611 or 877668.

           If you are using the SD customer master record in the OLTP system,

you can implement the customer-specific mapping in the DE_BALE or DE_AALE user exits in inbound processing and in the DE_EIOUT or DE_BCS2S user exits in output processing.

Vaibhav Shah