I have a source structure ABC that contains two fields. This structure needs to be transformed into two records that will store the field name of the source as well as the value. It actually creates name/value pair in the target interface. I wonder if message mapping could possibly handle that.
[Source]
ABC
---FIELD_A = 123
---FIELD_B = 456
[Target]
DEF[0]
---NAME = "FIELD_A"
---VALUE = "123"
DEF[1]
---NAME = "FIELD_B"
---VALUE = "456"
Regards
Chong Wah