My Stuff
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Keep an eye out for upcoming NetSuite events, including meetups, workshops, and webinars. These sessions are a great way to connect with peers, learn from experts, and stay current on the latest NetSuite updates and best practices. Registration links are provided in each event.
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…