The next series of contents will cover the basic Knowledge of how to write data to SuccessFactors.
Objective
The next series of contents will cover the basic Knowledge of how to write data to SuccessFactors.
There are four ways to write data:
POST: odata/v2/cust_MyBuilding
PUT: odata/v2/cust_MyBuilding( effectiveStartDate=datetime → CREATE (UI incl. RBP)
'1990-01-01T00:00:00', externalCode='GRTTESTKM3') → UPDATE (UI incl. RBP)
POST: odata/v2/upsert?purgeType=incremental → UPDATE OR CREATE Integration - no RBP
POST: odata/v2/upsert?purgeType=full → DELETE OR CREATE Integration - no RBP
Sometimes we need to write data to the EC system, for a small amount of data we can achieve it in the SAP SuccessFactors Employee Central, but if a large amount of data is required, it is better to write data in other ways. There are 4 ways to write data which is shown on the page.

Use copy to clipboard link in advanced rest client instead CTRL-C in browser.
Use http://www.epochconverter.com/ to convert dates to EPOC timestamp and vice versa
Not all entities support all write operations:

POST: odata/v2/cust_MyBuidling
Payload:
{ "effectiveStartDate" : "\/Date(1437436800000)\/",
"externalCode" : "GRTBLD3",
"externalName" : "Gerald Building 3",
"cust_rooms" : [
{
"__metadata" : {
"uri" : "https://salesdemo4.successfactors.com:443/odata/v2/cust_MyRoom(effectiveStartDate=datetime'2015-07-21T00:00:00',externalCode='GRTROOM1')", "type" : "SFOData.cust_MyRoom"
}},
{"__metadata" : {
"uri" : "https://salesdemo4.successfactors.com:443/odata/v2/cust_MyRoom(effectiveStartDate=datetime'2015-07-21T00:00:00',externalCode='GRTROOM2')", "type" : "SFOData.cust_MyRoom"
}}
]
}
This simulation demonstrates the basic configuration steps required to manually set up the configuration for SAP SuccessFactors Employee Central. You will get the basic knowledge of OData API call & Tools. How to monitor the APIs for different partners.
The following configuration and customization must have been completed before implementing Basic Settings in SAP SuccessFactors.
As part of this demonstration, we will cover configuration section in EC, which is: EC OData Basics - Query Operations.