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.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
First script in NetSuite
Hi,
We're adding our first scripting to NetSuite, and I'm having a few problems getting it running properly, specifically in Firefox. Hopefully the code below is fairly self explanatory, it checks a few fields when sales orders are saved and produces an error message if they are incorrect.
It works fine in Chrome and IE, but produces an error in Firefox. I've added the error report I received via email below the code.
Any help would be much appreciated, if you need more info, please let me know.
Sam.
function saveSOCheck()
{
var despatchDueDateValue = nlapiGetFieldValue('custbody_despatch_due_date');
var despatchDueDate = nlapiStringToDate(nlapiGetFieldValue('custbody_despatch_due_date'));
0