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.
Setting dates in 2.0
I'm having a problem setting dates in a 2.0 User Event Script.
I have a custom date field on a Sales Order and I need to set the date. Here's a simple code snippet:
must_ship = Date('10/04/2017');
orderRecord.setValue({
fieldId: 'custbody_must_ship_date',
value: must_ship
});
The error returned is "The field custbody_must_ship_date contained more than the maximum number ( 10 ) of characters allowed."
This error leads me to believe I should be sending a string. 10 characters holds a date perfectly. However, If I try setting a string instead of a Date object, I get this error: "You have entered an Invalid Field Value 10/04/2017 for the following field: custbody_must_ship_date"