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.
Dynamically adding items to a sales order
I'm trying to use the SuiteScript API to dynamically add items to an opportunity. To do so, I've added a custom field (list) that contains the names of 'templates' . When a value is selected in this list, I'd like the current items on the opportunity to be removed and the a new series of items added.
To do so, I used the FieldChanged(type,name) event and am successfully calling code to clear the list of items. However, despite many attempts I cannot seem to get the adding of new items to work properly. Specifically, the nlapiCommitLineItem call does not seem to work and the result is I'm left with only the last item on my list added and it remains in selected/editable mode in the UI. Here's the example code: