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

How to push data from C4C to ECC. ( Integration for c4c custom view to ECC)

0 Likes
39,608

Hello Experts

I have one requirement to integrate C4C custom view data to ECC.

Details: In C4C we have created a custom work center. Via Quick create in custom view, we are manually creating entries.

My requirement is to push the data to ECC as soon as we create any entry in custom view in C4C.

Please recommend the best suitable solution.

Thanks in Advance.

Regards,

Peeyush

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member226
Employee
Employee

Hi,

You can do this using SOAP/REST-based service call from C4C to push the data to ECC. Following should be the approach:

1. Request a SOAP-based web service or REST Odata service from the ECC side which can consume the data from C4C.

2. Create an external web service integration at the C4C side for the above said REST/SOAP service. There are many articles online that can explain the process.

3. Create a communication system and arrangement for service generated as part of step 2.

4. Generate script file for Event-BeforeSave of the custom business object whose data you want to transfer. Finally, call your endpoints using WebServiceUtilities.ExecuteRESTService method on each instance save(or based on your need).

You can also refer https://blogs.sap.com/2018/12/06/use-restful-service-to-consume-s4-functionality-in-sap-cloud-for-cu... to see all the steps in action.