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

Integrating SAP C4C with Dell Boomi for Employee Replication Central from Success Factors

Former Member
0 Likes
374

We have a requirement to replicate Employee from Success Factors to C4C. Since there was no option for replicating the employee we are trying to go for oData using Dell Boomi third party application, because P2P (Point to point communication) was deprecated from 1611 version and the HCI only support integrating Success Factors with sap C4C (PI is not supported)

So due to above reasons we are going with sap c4c standard oData service to replicate the Employee using Dell Boomi from Success Factors

But the issue is we are able to query the data but while creating we are facing the below error.issue.png (Please find the attached screen)

"<error xmlns="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata"> <code> 00145E5B1CC71EE0AB8B3A3B086F432E </code> <message xml:lang="en"> The Data Services Request could not be understood due to malformed syntax </message> </error>"

please find the xml payload and json payloads for the post call

XML Format

<entry xmlns="http://www.w3.org/2005/Atom" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices">

<content type="application/xml">

<m:properties>

<d:EmployeeID>1234673</d:EmployeeID>

<d:LastName>Velarde</d:LastName>

<d:FirstName>Angel</d:FirstName>

<d:EndDate>9999-12-31T00:00:00</d:EndDate>

<d:StartDate>0001-01-01T00:00:00</d:StartDate>

<d:InternalEmployeeIndicator>true</d:InternalEmployeeIndicator>

</m:properties>

</content>

</entry>

JSON Format:

{
"EmployeeID": "1919201",
"FirstName" : "Prashanth",
"LastName": "B",
"EndDate" : "9999-12-31T00:00:00",
"StartDate": "2018-02-18T00:00:00",
"InternalEmployeeIndicator": true
}

And we are passing the X-CSRF-Token for the same successfully. But still we are getting the issue.

Can any one worked on such scenarios, please check and suggest me.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Likes

We are also facing the same issue.

Even monitoring the OData service is also not possible.