Discussions
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to learn more!
Don’t miss your chance to meet our SuiteGurus—NetSuite Support professionals and subject matter experts with extensive experience in select product areas, including OneWorld, Advanced & Basic Accounting, Supply Chain Management, Receivables & Payables, CRM, Account Administration, and the SuiteCloud Platform. Full Conference attendees can prebook exclusive 30-minute one-on-one sessions for your product questions.
Spots are limited! Register through your Agenda Builder and find SuiteGuru under Agenda Enhancements.
Using Dataset.runPaged or query.runSuiteQLPaged returns empty pages in between populated pages
If I run the following query in the SuiteQL suitelet,
SELECT COUNT(*)
from inventoryitemlocations
WHERE
averagecostmli IS NOT NULL;
Then It returns 16869, so that means there are 16,869 rows.
I want to provide a CSV export that gets emailed to users on a scheduled basis, of all the data that would be there if it was SELECT * instead of SELECT COUNT(*)
However, when I create a suitescript to do this, I get much smaller numbers of rows.
If I use Dataset.runPaged, some of the pages (pageSize = 1000) are completely empty. These empty pages appear after several populated pages, and before other populated pages.