My Stuff

Nominate Your Peers for NetSuite Support Community's Choice of the Quarter! Submit your nomination today.
Intelligent Payment Automation version 1.0.3 is now available in the SuiteApp Marketplace. The SuiteApp, powered by BILL, lets you automate payments, manage vendor details, and bank account information within NetSuite. Learn more

rco_joe Green Ribbon

Comments

  • Yep, I grab the web query using a php command like this which is still using the old url format, but it still works for now: $data = file_get_contents('https://system.na1.netsuite.com/app/reporting/webquery.nl?compid=.....); Then the script removes all the "<td>", "<tr>", "\n", "</table></body></html>", "<html><head><meta…
  • Sorry, I totally missed that important detail, none the less, I do have a solution for you that we use for reports. Have you used the excel query url for reports? Its pretty slick, I grab it with curl, then parse the saved text file easily with a php script to get it into a tab delimited file which i then use sqlldr to…
  • Wait a second here, its totally possible to retrieve a saved report and export it to a database using suitescripts 1.0 and I'm sure there are ways to do it in 2.0 as well. We do this on a hourly basis because of the limitations imposed on saved searches to not allow us to run nested queries. Google "NetSuite RESTlet Saved…