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.
NetSuite has launched SuiteSuccess Wholesale Distribution Edition, in Japan. Please join us the webinar on February 12 that introduces NetSuite solution with demos and case studies for Wholesale Industry.
Register Now
Have questions or experiences to share? Post your Release 2026.1 questions and join discussions in the Release 2026.1 category.
User Event Script Error
Trying to set the line item "Expected Receive by Date" on create, sourced from the "Received By" field on the PO. It keeps pulling today's date in rather than a date in the future. We are using create so that we can edit the PO if certain line items are not forecasted to arrive all on the same date. Can anyone see where we are going wrong?
function userEventBeforeSubmit_SetReceiptDate (type)
{
if (type === 'create')
{
var count = nlapiGetLineItemCount('item');
var dueDate = nlapiGetFieldValue('duedate');
nlapiLogExecution('DEBUG', 'userEventBeforeSubmit_SetReceiptDate', 'duedate: ' + dueDate);
for (var i =1; i<= count; i++){
nlapiSelectLineItem('item', i);
var expectedreceiptdate = nlapiGetCurrentLineItemValue('item', 'expectedreceiptdate');