```/** * @NApiVersion 2.0 * @NScriptType ClientS...
# suitescript
t
Copy code
/**
 * @NApiVersion 2.0
 * @NScriptType ClientScript
 * @NModuleScope SameAccount
 */
define([], function () {

    function pageInit(context) {
        **blahblahblah**
    }

    function fieldChanged(context) {
        alert('test')
    }

    return {
        pageInit: pageInit,
        fieldChanged: fieldChanged
    };
});
n
Well, not a lot there to go with! 😮 Maybe take out the fieldChanged entry altogether and add back in or try manually unticking / ticking the entry point in the script deployment. Remove the NS script entry altogether and re-create could just be NS being NS 😞 Not a lot else to suggest I'm afraid.
t
Turns out there was a Workflow that was affecting this. Once I deactivated it, everything worked out fine. Oh NetSuite :(
👍 1