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.
Call function using addButton in Suitelet
Hi,
I am having trouble calling a function using the .addButton function in a suitelet.
I have a tiny snippet here.
function main(request, response)
{
var form = nlapiCreateForm('Purchase Order Confirmation', true);
form.setScript('customscript336'); //Script id of a client script
form.addButton('custpage_button','SUBMIT', "talert();"); //talert() contains functions such as nlapiLoad, nlapiSubmit, etc
//write the form on the reponse of the Suitelet
response.writePage( form );
}
I am using an external URL (Available Without Login). The problem is, I cannot use functions such as nlapiLoad, nlapiSubmitFIeld, etc with the .addButton. However, with the INTERNAL url, everything works fine. Does anyone have an alternative or ran into this problem and can provide a solution with the .addButton dealing with external Urls?