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.
Intelligent Payment Automation, powered by BILL (aka Bill.com), lets you automate payments, manage vendor details, and bank account information within NetSuite.
The SuiteApp is available to organizations based in the U.S. with a valid U.S. address, or to global customers (except Canada, China, and Japan) with U.S. business subsidiaries. It only supports payments to vendors operating in the United States.
For more information, visit this thread.
Errors with date validation script
Hello,
I'm attempting to use the script below to validate a date in a custom field using the OnFieldChanged function. Once I have selected a date from the calendar to populate my field I want to check to see if the date is at least 2 weeks out from today's date. Here is the section of the script I'm working on:
else if(name == 'custbody_propduedate')
{
var PropDate = new Date();
PropDate.getDate();
PropDate = nlapiDateToString(PropDate);
alert(PropDate);
var DueDate = nlapiGetFieldValue('custbody_propduedate');
//DueDate = nlapiDateToString(DueDate);
alert(DueDate);
var DateSub = 0;
var DateSub = parseInt(DueDate - PropDate);
alert(DateSub);
//DateSub = DateSub/(1000*60*60*24);
//alert(DateSub);