Hey everyone!
I have a mapping task where I need to get all the values of a multiple occuring field in the source interface, then pass the values to a single field in the target interface.
eg. name >>>mapped to>>> names
SOURCE:
<Set>
<name>john</name>
</Set>
<Set>
<name>harry</name>
</Set>
<Set>
<name>mike</name>
</Set>
<Set>
<name>james</name>
</Set>
DESIRED RESULT:
<target>
<names>john harry mike james</names>
</target>
Do I need to create a queue UDF for this?
Kind regards,
Glenn