Solved
Forum Discussion
del
9 years agoContributor III
If you don’t need additional fields from the database other than the invoice XML, I think your solution would be to replace the XML Formatter snap with a Document to Binary snap and make sure your mapper maps the XML field name to “$content”
Example:
- If Get Invoices has a statement like “Select invoiceXML from InvoiceTable”
- The Mapper would map $invoiceXML to $content
- The Document to Binary snap would have encoding set to “None”
- XML Parser should then produce your expected results
matt_bostrom
9 years agoNew Contributor II
YES! that is perfect and it works for me. Thank you Del.