Discussions
Join us for complimentary one-day events around the world and step into a future fueled by AI and limitless potential. Explore new breakthroughs, sharpen your skills, and connect with experts who are shaping what’s next. Experience bold keynotes, interactive learning, and connections that span the global NetSuite community. Discover what's next at SuiteConnect Tour 2026.
SuiteScript Usage/Governance Limit Workaround
Hi,
I am trying to create a custom "report" suitelet script to generate a CSV file containing rows where, for each row, thousands of usage units are required for calculating dependent columns/fields. The usage is due to complex record line item and date-dependent formulas which do not seem remotely possible using Saved Search formulas (for example, any given row's values can depend on the values in 20 separate records). The results also potentially change every day so it seems there is no point in pre-calculating and storing the results.
I am already using nlapiRequestURL() to offload calls that process each row to new suitelet instances (where response.write() is used for the formula result), so my script currently uses tens of thousands of usage units without a problem.