Hi everyone, can NetSuite ingest cXML invoices? Is...
# administration
n
Hi everyone, can NetSuite ingest cXML invoices? Is this something that can be done using Boomi? Thank you
s
I've done it using a custom integration. Not sure if Boomi has something built in.
n
Thank you @Shawn Talbert. By custom integration do u mean like a C# code to get the cXML and sync it to NS? Would I have to convert the cXML to JSON or XML before upsert'ing the file to NetSuite? I have done Webservice integration through Boomi that uses XML before. But not sure how different the cXML is. Thank you again.
s
cXML is a schema/protocol - it's still XML under the covers. However, you still need something to convert the cXML data format into what NS wants. If you already have Boomi, check to see if it has direct cXML support.
In my use case, I had a RESTlet that received the cXML, converted to JSON via JSONIX, then created the corresponding record(s) in NetSuite.
n
Perfect, I can try that. Thank you so much @Shawn Talbert