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.
FireFieldChanged??
I have some code that adds some fields together.
I want to update the total everytime they tab out.
Function AddThemUp(){
var ADV_Registration_Bud = (nlapiGetFieldValue('custevent_adv_registration_bud')=="") ? 0 : parseFloat(nlapiGetFieldValue('custevent_adv_registration_bud'));
var ADV_Facility_Rental_Bud = (nlapiGetFieldValue('custevent_adv_facility_rental_bud')=="") ? 0 : parseFloat(nlapiGetFieldValue('custevent_adv_facility_rental_bud'));
var TotalOfFields;
TotalOfFields = (ADV_Registration_Bud + ADV_Facility_Rental_Bud);
nlapiSetFieldValue('custevent_TotalofFields, TotalOfFields);
}
Above is the basic Idea, I have put the function into both the Validate Record Function or Field Changed Function...I get a Stack OVerflow(LOL)
What is firefieldchanged and how do I use it...the manual doesn't give an example that I saw.