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!
Stay in the Know
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
Please note that on Friday, March 20, 2026, at 8:00 PM Pacific time, our Case Management System will undergo a scheduled maintenance for approximately 4 hours. During this time, case creation via SuiteAnswers will be unavailable and inbound calls will be routed to Customer Service.
Inventory detail subrecord
Hi All
While fulfilling the SO i am setting the serial numbers of the items in the inventory subrecord and imediately after setting the serial numbers i need to fetch those values for performing the validations. But problem is that i could get only 1st line -serial number and
remaining lines are not fetched
Even if i select the 2nd line directly still it's showing the 1st line serial number itself
var seril = new Array();
var cnt = invDetailSubrecord.getLineItemCount('inventoryassignment');
for(var j=1;j<=cnt && cnt != -1;j++){
invDetailSubrecord.selectLineItem('inventoryassignment', j);
seril[a] = invDetailSubrecord.getCurrentLineItemValue('inventoryassignment','issueinventorynumber');
a++;
0