Data Mapping Assign to an Array.
Summary
Trying to do a data mapping to an arrayContent
I have a target business object that contains an array. I'm struggling to find a way to map into it. The array is an array of name/value pairs.
I tried
"test" -> myvar.myarray[0].name
"myval" -> myvar.myarray[0].value
but I get an error that myvar.myarray doesn't exist.
I was able to create a temp name/value variable and put it in using this syntax:
create business object mytempval (name/value)
Assign "test" to mytempval.name
Assign "myval" to mytempval.value
then assign this variable to the array like this:
0