Inline Editing’s xedit Events

Whenever any record is edited inline, whether from the UI or a Script using submitFields, NetSuite will trigger an xedit User Event for that record. You can use this trigger type to make sure that any User Events you have deployed on the record being edited either process or avoid Inline Edits appropriately.

function beforeSubmit(context) {

    if (context.type === context.UserEventType.XEDIT) {
        // Do something special for Inline Edit...
    }
    
    // ...
}

function afterSubmit(context) {
    if (context.type === context.UserEventType.XEDIT) {
        // Avoid doing anything on Inline Edit
        return;
    }
    
    // ...
}

The only exception to this rule is when an Inline Edit is triggered by another User Event. Actions taken in User Event scripts will never trigger other User Event scripts.

For example, if you have an afterSubmit User Event on the Sales Order that automatically creates an appropriate Invoice, no User Events deployed to the Invoice record will be triggered. This is because NetSuite never chains User Events. In theory, this is to prevent any one script from infinite looping or cascading a whole bunch of database interactions, but in practice it is often a huge barrier to building efficient sequence flows across multiple record types.

{"email":"Email address invalid","url":"Website address invalid","required":"Required field missing"}

Related posts

March 3, 2021

Does the physical location of a competent employee change the amount of value they can deliver for your organization? If it does, I’d be keen to hear your story. If it does not, why ...

Read More

March 2, 2021

Today a friend and former colleague of mine – who happens to now be in a development leadership role for a NetSuite partner – was lamenting the extreme difficulty of finding and hiring NetSuite ...

Read More

March 1, 2021

Software is never finished; clients are always changing and re-prioritizing. NetSuite is ever a moving target – always updating and evolving. Market forces are always shifting and shoving, forcing new demands on your business. ...

Read More