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.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Keep an eye out for upcoming NetSuite events, including meetups, workshops, and webinars. These sessions are a great way to connect with peers, learn from experts, and stay current on the latest NetSuite updates and best practices. Registration links are provided in each event.
SuiteWorld | October 25–28, 2026 | Las Vegas
Registration opens June 9. Be ready when passes drop. Get the green light now - Convince your boss
Registration opens June 9. Be ready when passes drop. Get the green light now - Convince your boss
nlapiRemoveLineItem as result of UI Changes (ClientScript)
Hi netsuitefolk,
i know there a some entries about this nlapiRemoveLineItem.
Our UI has a sublist and we want if a field changed to remove current lineitems of sublist.
if you tried all in forum mentioned things, nothing work on a clientscript as result of a fieldchanged event.
ex.:
if (nlapiGetLineItemCount('recmachcustrecord_ms_ci_contract') > 0) { for (var i = nlapiGetLineItemCount('recmachcustrecord_ms_ci_contract'); i >= 0; i--) { nlapiRemoveLineItem('recmachcustrecord_ms_ci_contract', i); } } result will that no sublist wasentry removed,
if you set an alert after each nlapiRemoveLineItem, than it will deletet. But this isn't userfriendly!
MY SOLUTIION
0