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.
setHelpText not working
I created a NetSuite form (external without login) in a Suitelet and I want to display help on certain fields. I used the setHelpText function as shown below which displays the clickable label but when I click it, all I get is this message: Help is unavailable because your connection has timed out. Please log in and try again.
Sample Code:
var CreditCardCode=form.addField('custpage_cc_sec_code','text','Card Security Code', null, 'custpage_group');
CreditCardCode.setHelpText("Test Text");
As an alternative solution I was thinking of changing an on-screen help message by triggering a function each time the user selects a different field. Is there any way to detect a field was clicked before the user enters any data?