Hello,
I have a URL that has XML structure and would like to get also the child elements for a particular field.
In the example below, I would like to get the from structure as a field so that I can filter on the values.
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
My table structure should be as follows,
note to from heading body
At the moment, I am only getting note field with a message "the cell has trailing spaces and embedded newlines"
thanks,