(I also posted this in Integration channel, but ma...
# csvimports
r
(I also posted this in Integration channel, but maybe here somebody knows about this) We are considering creating a small integration, as some data needs to flow from a system to NS. This is currently being done by an user using CSV, with an import csv template that we have in NS, and we were thinking about automating this. I have read this article about NetSuite CSV Integrator SuiteSolution, which seems to fit what we need. The article - https://blog.prolecto.com/2019/08/18/learn-and-assess-the-value-of-netsuites-csv-integrator-add-on-bundle/ However, the bundle does not seems public anymore. Does anybody knows anything about the status of this solution? Any alternative to run a CSV Import automatically via integration?
a
@Roc127 several other options I'd consider before automating CSV imports. Web services would be the first that comes to mind to get data in to netsuite, but more elegant solutions can be created with restlets to create API endpoints.
If seriously considering automating a connection between netsuite and some external source, and you are OK with the dev...restlets is what I'd suggest. If you prefer an out of the box solution, check out celigo...as they can handle this
👍 1
n
We did an integration for a client which works as: External system pings our suitelet. Suitelet retrieves the CSV files via SFTP A NS Scheduled script creates the CSV Import task using the same import template as they were using. A year does the track we now want to move to a RESTlet. But the above interim solution matched the customers business flow and was easily implemented.
r
Thank you both for your feedback!