Discussions
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to learn more!
Don’t miss your chance to meet our SuiteGurus—NetSuite Support professionals and subject matter experts with extensive experience in select product areas, including OneWorld, Advanced & Basic Accounting, Supply Chain Management, Receivables & Payables, CRM, Account Administration, and the SuiteCloud Platform. Full Conference attendees can prebook exclusive 30-minute one-on-one sessions for your product questions.
Spots are limited! Register through your Agenda Builder and find SuiteGuru under Agenda Enhancements.
how is "save" defined
I am almost done with this script, but cannot seem to find the function definition of save- can someone help? My goal is this:
Upon clicking "save" on an SO, I want this script to take the total of the SO, add it to the current balance, and if it exceeds the credit limit on the customer form, block the save to error.
Here is what I have:
To be run when ‘save’ is selected
function noCreditKillSave()
{
var creditLimit = nlapiGetFieldvalue('creditlimit');
var balanceAmount = nlapiGetFieldvalue('balance');
var totalAmount = nlapiGetFieldvalue('total');
if( (balanceAmount + totalAmount) >= creditLimit)
{
//need to kill the 'save' process
~angela