Hi all,
I have an object containing the following data:
"EF000003":{
"Value":"EV010173"
"Datatype":"picklist"
"InternationalCharacteristicCode":"EF000003"
"Description":"Montagewijze"
"orderNumber":5
"Unit":""
"newValue":{
"EV000028":"Universeel"
"EV008457":"Op kabelgoot"
"EV010173":"Wand-/plafondmontage"
"EV011419":"op het centrale vak"
}
}
I need to replace the string in Value with the actual value that corresponds in newValue. In this example, this should be the outcome:
"EF000003":{
"Value":"Wand-/plafondmontage"
"Datatype":"picklist"
"InternationalCharacteristicCode":"EF000003"
"Description":"Montagewijze"
"orderNumber":5
"Unit":""
}
Any easy way to achieve this?