I have a bunch of records going into the XML writer to be written as XML messages. So far this is what I have (note that personOID can be used as a key):
<Person_List>
Active
5
Aman
Hussain
789
HU997
</Person_List>
What I need to achieve is this XML message to be split into seperate tags:
<Person_List>
Active
5
Aman
Hussain
</Person_List>
<Professional_List>
Active
5
789
HU997
</Professional_List>
I tried the below sample mapping from the Clover Wiki but apparently did not get the required format:
http://wiki.cloveretl.org/doku.php?id=c … #xmlwriter
Thanks,
- CB