Hi everyone, can NetSuite ingest cXML invoices? Is this something that can be done using Boomi? Thank you
s
Shawn Talbert
12/01/2022, 6:59 PM
I've done it using a custom integration. Not sure if Boomi has something built in.
n
NS Sha
12/01/2022, 9:12 PM
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
Shawn Talbert
12/01/2022, 10:05 PM
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.
Shawn Talbert
12/01/2022, 10:12 PM
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
NS Sha
12/02/2022, 2:00 PM
Perfect, I can try that. Thank you so much @Shawn Talbert