How to Export Excel Files from Suitelet using a Client Script

To directly export an Excel file to the user’s system upon clicking a button on the suitelet page, we can use the following method. Client script function: function exportExcel() { try { const filename = ‘fileName’; // Build up the XML string and set encoding for Excel xmlString = “; //added the xmlString of the… Continue reading How to Export Excel Files from Suitelet using a Client Script

NetSuite reports in a spreadsheet(Web Query)

NetSuite’s web query reports allow you to get report results directly from your desktop without having to go to NetSuite.  This is a great feature if you need to look at refreshed NetSuite data in Excel regularly or want to make the data available to users that do not have a NetSuite license. This feature is only… Continue reading NetSuite reports in a spreadsheet(Web Query)