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.
SuiteScript: Invalid date value (must be MM/DD/YYYY) error
I am relatively new to SuiteScript. When attempting to set the date value, the error "Invalid date value (must be MM/DD/YYYY)" is generated. See code below.
Any suggestions would be greatly appreciated.
define(['N/record', 'N/format'], function(record, format) {
function myBeforeSubmit(scriptContext) {
var currentDate = new Date();
var invoiceDueDate = new Date(currentDate.setDate(currentDate.getDate() + 10));
log.debug('currentDate + 10', invoiceDueDate);//"2023-07-31T03:48:18.984Z"
var date = format.format({value: invoiceDueDate, type: format.Type.DATE} );
log.debug('currentDate + 10 date formated - date', date);//07/31/2023
scriptContext.newRecord.setValue({fieldId: 'duedate', value: date}); // Invalid date value (must be MM/DD/YYYY)
}
return { beforeSubmit: myBeforeSubmit };