Hi,
I have to generate an xml for importing invoice into EXACT globe.
The xml will be generated using a sql code within a task.
Can you please guide in what should be the CDATA format for the code?
- I tried below code for processing it:
'<!dCDATAt ' +cast(i.display_invoice_number as varchar) + ' ]]>' as Description
Below is the error after its processed in excat :
-
Removed the CDATA and sent it as below :
CONCAT('< ', cast(i.display_invoice_number as varchar), ' >') as Description
Still it was not processed in EXACT, and no error message was provided -
In the exact knowledge base its mentioned that below characters can be used :
string
Strings in XML can contain all normal characters except &, <, >, " and '. These characters need to be replaced by &, <, >, " and ' respectively
So updated the Descritption to below code :
'<!
The output after processed in Exact :
Can someone please guide?