Reputation: 37
Hello friends I am working with NetSuite and SuiteScript. I'm pretty novice at this. I need to get a report that is in NetSuite to consume from an external application, you can do this with SuiteScript? or otherwise ?. I also tried to do with emulating HtmlUnit navigation on the page but when they log have the problem of not achieving additional authentication and saltarmela or to complete it with HtmlUnit. Online reading I found that you can get a Web Query Excel, allowing this in the report options, but the reports I need to bring this option does not appear (in other reports that are in the account if, but right where I need not ). If puediesesn help of grateful.
Greetings!
Upvotes: 1
Views: 3421
Reputation: 4174
Chris, you mention being able to consume NetSuite data inside of another application like Excel so based on that I have a few general recommendations.
There are more than a few ways to get data from NetSuite using external applications. Here are a few of the more common ways. Oh to answer your question about whether you can use SuiteScript - I think the answer is NO because SuiteScript is used inside NetSuite. SuiteScript is the code you use to customize NetSuite and SuiteScript is vanilla JavaScript that runs on the server & client.
Use NetSuite web services to pull data into a reporting application, .NET program or excel. Here is the most recent WSDL file directly from NetSuite for the SOAP web services.
Use the NetSuite ODBC Driver or the NetSuite ADO.NET Driver. With these you can connect to NetSuite like you connect to a database. You can construct queries like any other SQL database, NetSuite is built on Oracle so many of the built in Oracle functions can be used such as decode.
Write a .NET, Java or PHP program that uses the NetSuite API and/or web services.
Hope this helps.
Upvotes: 1