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.
Confirm Box for Saving a Customer Record
I have a scripting question about getting user feedback before executing a certain block of code.
function...
if(customerRef != null && customerRef != "")
{
//return confirm("This will deduct an issue from the customer. Click OK to deduct an issue or Cancel to save the record without deducting an issue.");
Basically what happens is if a certain checkbox is checked on the customer record (which will deduct an issue from the customer's prepaid issues remaining), it runs this part of the code when the user saves the record. But I want to ask the user if they really want to perform this action. If they click "yes" or "ok", go ahead and perform the rest of the code. If they click "no" or "cancel", abort the script and the saving process so they can go back and uncheck the checkbox. With the "return confirm" function, clicking 'OK' saves the record,