Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
Update your Profile with your Support type to get your Support Type badge.
Expand your NetSuite knowledge by joining our Ask A Guru Live sessions. RSVP on this event now.
Uncover the power of data with the Analytics Hub —your ultimate guide to mastering NetSuite Saved Searches and Reports. Simplify the complex and unlock your organization's true potential. Dive into the Analytics Hub now and soar to new heights!
NetSuite 2025.2 Release Notes - This document summarizes the changes to NetSuite between 2025.2 and the previous release.
To help you get the most out of your 2025.2 Release Preview account, review the topics outlined in the 2025.2 Release Preview Guide.
SuiteWorld October 6 - 9, 2025: Agenda Builder is live!
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!
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!
Client script to change sales order line item price levels
I'm struggling to build a simple client script that will change all price levels of items on a sales order to a level selected in a drop down box
The first item changes but then the script seems to stop at that point - so the first price level changes but doesn't commit and move to the next line
function changeDiscountLevel() { var itemcount = nlapiGetLineItemCount('item'); //select the first line item nlapiSelectLineItem('item',1); //for the line item iteration var i = 2; do { //set the current item price level to the drop down selected value (dropdown is 'custbody2') if(nlapiGetCurrentLineItemValue('item', 'price') != nlapiGetFieldValue('custbody2')) { nlapiSetCurrentLineItemValue('item', 'price', nlapiGetFieldValue('custbody2'), false,true); nlapiCommitLineItem('item'); i++; //get the next line item nlapiSelectLineItem('item',i); } } while(i <= itemcount); } }
0