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.
Does a form object get passed on field changed events?
Hi -
I've been trying to refo our workflow for the customer service department, and I've added a lot of fields in to our case form. To keep the clicking around down, I've avoided putting these informational fields in some seperate subtab, but not all of the fields are relevant to the case. I figured I could set a field hidden or normal based on an issue type like so:
function fieldChanged( type, name )
{
// var record = nlapiLoadRecord(nlapiGetRecordType(), nlapiGetRecordId() )
var form = new nlObjForm
if ((name == 'issue') && (nlapiGetFieldText('issue') == "X"))
{
form.getField('custevent_foo').setDisplayType('normal');
form.getField('custevent_bar').setDisplayType('hidden');