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.
Using arguments
Hello. I'm using the following script to fire an alert on a sales order based on a field in the customer record. It works great thanks to reviewing different posts. I'm new to JScripting and had a question why the arguments in the function are needed?
function MemoTest(type, name)
{
if(name=='entity'){
var customer= nlapiGetFieldValue('entity')
var supporthold = nlapiLookupField('customer',customer, 'custentity_support_hold');
if (supporthold== "T"){
alert("This Customer is on support hold, please do not service and have them call Maher at 905-307-6873");
}
}
}
If any argument is left out the script does not work. I'm not sure why these arguments are necessary or how they are used. This is client side field changed function. Any help is appreciated.