NetSuite Migrations

可紊 提交于 2021-02-19 05:52:14

问题


Has anyone had much experience with data migration into and out of NetSuite? I have to export DB2 tables into MySQL, manipulate data, and then export ina CSV file. Then take a CSV file of accounts and manipulate the data again for accounts to match up from our old system to new. Anyone tried to do this in MySQL?


回答1:


A couple of options:

  1. Invest in a data transformation tool that connects to NetSuite and DB2 or MySQL. Look at Dell Boomi, IBM Cast Iron, etc. These tools allow you to connect to both systems, define the data to be extracted, perform data transformation functions and mappings and do all the inserts/updates or whatever you need to do.

  2. For MySQL to NetSuite, php scripts can be written to access MySQL and NetSuite. On the NetSuite side, you can either do SOAP web services, or you can write custom REST APIs within NetSuite. SOAP is probably a bit slower than REST, but with REST, you have to write the API yourself (server side JavaScript - it's not hard, but there's a learning curve).

Hope this helps.




回答2:


I'm an IBM i programmer; try CPYTOIMPF to create a pretty generic CSV file. I'll go to a stream file - if you have NetServer running you can map a network drive to the IFS directory or you can use FTP to get the CSV file from the IFS to another machine in your network.




回答3:


Try Adeptia's Netsuite integration tool to perform ETL. You can also try Pentaho ETL for this (As far as I know Celigo's Netsuite connector is built upon Pentaho). Also Jitterbit does have an extension for Netsuite.




回答4:


We primarily have 2 options to pump data into NS: i)SuiteTalk ---> Using which we can have SOAP based transformations.There are 2 versions of SuiteTalk synchronous and asynchronous. Typical tools like Boomi/Mule/Jitterbit use synchronous SuiteTalk to pump data into NS.They also have decent editors to help you do mapping. ii)RESTlets ---> which are typical REST based architures by NS can also be used but you may have to write external brokers to communicate with them.

Depending on your need you can have whatever you need.IN most of the cases you will be using SuiteTalk to bring in data to Netsuite.

Hope this helps ...




回答5:


We just got done doing this. We used an iPAAS platform called Jitterbit (similar to Dell Boomi). It can connect to mySql and to NetSuite and you can do transformations in the tool. I have been really impressed with the platform overall so far




回答6:


There are different approaches, I like the following to process a batch job:

To import data to Netsuite:

  1. Export CSV from old system and place it in Netsuite's a File Cabinet folder (Use a RESTlet or Webservices for this).
  2. Run a scheduled script to load the files in the folder and update the records.
  3. Don't forget to handle errors. Ways to handle errors: send email, create custom record, log to file or write to record
  4. Once the file has been processed move the file to another folder or delete it.

To export data out of Netsuite:

  1. Gather data and export to a CSV (You can use a saved search or similar)
  2. Place CSV in File Cabinet folder.
  3. From external server call webservices or RESTlet to grab new CSV files in the folder.
  4. Process file.
  5. Handle errors.
  6. Call webservices or RESTlet to move CSV File or Delete.

You can also use Pentaho Data Integration, its free and the learning curve is not that difficult. I took this course and I was able to play around with the tool within a couple of hours.



来源:https://stackoverflow.com/questions/18617294/netsuite-migrations

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!