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

SAP CDC | Not possible to update custom fields with Dataflows

13129580
Explorer
0 Likes
884

Hello,

I would like to do a migration with Dataflow.
I managed to create a user with the required information, but when it comes to the custom fields, it is not field.

I have created a field called ietf_languag_tag in CDC --> data.ietf_languag_tag

I am using this JSON for the dataflow:

[

  {
"profile":{
"email":[an email address],
"first_name":"Guillaume",
"last_name":"Plaindoux",
"gender":"m",
"language_preferred":"fr",
"country":"FR",
"data":{
"ietf_language_tag": "fr_FR"
}
}
}
]

Please see attached the parameters of my dataflow.
dataflow-1.png

dataflow-2.png

dataflow-3.png

The field ietf_language_tag is not populated.

Let me know what's wrongn and how I can do this.

Cheers,
Guillaume

Accepted Solutions (0)

Answers (1)

Answers (1)

ma_c
Product and Topic Expert
Product and Topic Expert
0 Likes

Data is not nested in profile. Try something along these lines:

{

"profile": {

"email": "an email address",

"first_name": "Guillaume",

"last_name": "Plaindoux",

"gender": "m",

"language_preferred": "fr",

"country": "FR"

},

"data": {

"ietf_language_tag": "fr_FR"

}

}

13129580
Explorer
0 Likes

Hello,

Actually I tried with this code but the Data and Profile should not be split like this.

The dataflow reads record by record and here it will read Profile then Data.
We were receiving some error message.

Cheers,
Guillaume