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 Where our community gets ready for what’s next!
SuiteWorld brings thousands of innovators, builders, and leaders together to learn, connect, and shape what’s next. This October, explore how to build a stronger foundation for growth through inspiring keynotes, major product reveals, hands-on sessions, and unforgettable moments—all in one place for our biggest event of the year. Join us
SuiteWorld brings thousands of innovators, builders, and leaders together to learn, connect, and shape what’s next. This October, explore how to build a stronger foundation for growth through inspiring keynotes, major product reveals, hands-on sessions, and unforgettable moments—all in one place for our biggest event of the year. Join us
TypeError: Cannot read property "0" from undefined (ATP.js$1362849#42)
Hi,
This is my first real script and I'm getting this error. I ran it through the console and had no problems with it, however it tosses this error when I upload it and try to create a sales order.
The error occurs in line 4 of this code on the demand[j].rawValues[0].value .
function makeComparisons(itemList, itemQuantity, demand, supply){ for ( var i = 0; itemList != null && i < itemList.length; i++){ for (var j = 0; demand != null && j < demand.length; j++){ if (itemList[i] == demand[j].rawValues[0].value){ if( parseInt(itemQuantity[i]) <= parseInt(demand[j].rawValues[2].value) && demand[j].rawValues[2].value != ""){ var today = nlapiGetFieldValue('trandate'); var dateToSet = stringtodate(modifyDateByDays(today,3)); nlapiSelectLineItem('item',parseInt(j)+1); nlapiSetCurrentLineItemValue('item','custcol_expect_ship_date_so_line',dateToSet.dateFormat('m/d/y')); } else { if(demand[j].rawValues[2].value > 0){ itemQuantity[i] = (parseInt(itemQuantity[i]) - parseInt(demand[j].rawValues[2].value)); } } } } } 0