Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Keep an eye out for upcoming NetSuite events, including meetups, workshops, and webinars. These sessions are a great way to connect with peers, learn from experts, and stay current on the latest NetSuite updates and best practices. Registration links are provided in each event.
SuiteWorld | October 25–28, 2026 | Las Vegas Where our community gets ready for what’s next!
SuiteWorld brings thousands of innovators, builders, and leaders together to learn, connect, and shape what’s next. This October, explore how to build a stronger foundation for growth through inspiring keynotes, major product reveals, hands-on sessions, and unforgettable moments—all in one place for our biggest event of the year. Join us
SuiteWorld brings thousands of innovators, builders, and leaders together to learn, connect, and shape what’s next. This October, explore how to build a stronger foundation for growth through inspiring keynotes, major product reveals, hands-on sessions, and unforgettable moments—all in one place for our biggest event of the year. Join us
Advice On when/How to fire a script
Hi all,
I have a script, which basically dependant on a field value loads a related record captures some data and then populates it into a store field for displaying in a HTML field.
The script works fine in Debugger and does what I want it to but I just can;t figure out how to set it to run, I have tried FieldChanged and Pageinit but it just keeps saying that function is not referenced.
Any ideas advice please?
var NewRec = nlapiLoadRecord('customrecord_report_writing',1); nlapiLogExecution('DEBUG', 'Execution Context', nlapiGetContext().getExecutionContext() ); var getType = NewRec.getFieldValue('custrecord_rw_wpa_type'); //1=CGI,2=BT,3=LBG,4=CSC-HMPO,5=Individual@work,6=Test Record nlapiLogExecution('DEBUG', 'Type', getType); var WPAID = NewRec.getFieldValue('custrecord_rw_wpa_link'); nlapiLogExecution('DEBUG', 'WPA ID', WPAID); var WPARec = nlapiLoadRecord('customrecord_wpa_20',WPAID); if (getType == 6) { var LBGPrimaryCondition1 = WPARec.getFieldValue('custrecord_wpa_lbg_primary_condition'); var LBGSecondaryCondition = WPARec.getFieldValue('custrecord_wpa_lbg_secondary_condition'); var Workingenviroment = WPARec.getFieldTexts('custrecord_wpa_wrkstat_environment'); var Workingenviroment = Workingenviroment.join('<br>'); var LBGJobRoleInvoles = WPARec.getFieldValue('custrecord_wpa_lbg_job_roe_involves'); var LBGDSECoducted = WPARec.getFieldText('custrecord_wpa_lbg_dse_conducted'); var LBGDSEDate = WPARec.getFieldValue('custrecord_wpa_lbg_dse_date'); var LBGDSEOutcome = WPARec.getFieldValue('custrecord_wpa_lbg_dse_outcome'); var LBGbackground = WPARec.getFieldValue('custrecord_wpa_lbg_background'); var LBGrepeatReferral = WPARec.getFieldText('custrecord_wpa_lbg_repeat_referral'); var LBGPreviousAdjustment = WPARec.getFieldValue('custrecord_wpa_lbg_previous_adjustment'); var StoreFieldCode = ('<STYLE TYPE="text/css"> <!-- TD{font-family: Tahoma,Geneva,sans-serif; font-size: 8pt;} ' + 'TH{font-family: Tahoma,Geneva,sans-serif; font-size: 8pt;font-weight:bold;} ' + 'table.padded-table td 0