I have a .CSV file that is being created automatic...
# suitescript
g
I have a .CSV file that is being created automatically by a script and saved into File Cabinet. What would be the best platform to create a program to connect to Netsuite and download locally this .CSV based on a task scheduler?
l
Option 1- if you run linux, you can have a bash scrip that run a curl on cronjob. Before you do that, I would ask you how you plan to maintain or connect. Will you maintain the netsuite credentials in a file properties for that app ? Will you add token authentifcation ? Will you add an extra role with reduced permissions ? Option 2- You could use the SFTP module from suitescript 2.0, and setup an official SFTP server for your company to receive these files, so anyone that needs to access can have a user for the SFTP server, so anyone that needs it won't need your computer and all the logic or maintenance will remain in NetSuite, not in some extra application.
I suggest to go with option 2