Discussions
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to learn more!
Don’t miss your chance to meet our SuiteGurus—NetSuite Support professionals and subject matter experts with extensive experience in select product areas, including OneWorld, Advanced & Basic Accounting, Supply Chain Management, Receivables & Payables, CRM, Account Administration, and the SuiteCloud Platform. Full Conference attendees can prebook exclusive 30-minute one-on-one sessions for your product questions.
Spots are limited! Register through your Agenda Builder and find SuiteGuru under Agenda Enhancements.
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');