SuiteScript 2.0 in the Dev Console

Previously I mentioned you can use your browser’s developer tools to test out SuiteScript directly in the browser. One of my coaching students asked:

“How do we use the chrome dev console without modules loaded in?”

Excellent question! In SuiteScript 2.0, we need to load in the modules we want to use. In our scripts, we would do this with the define function. In the console, it works exactly the same, except we use the require function instead:

require(["N/search"], function (s) {
    var mySearch = s.load({...});
    // ...
});

From within the callback function here, you can use console.log to print data to the browser console.

If you open the dev tools while editing a specific record, you can use the N/currentRecord module in your code to access fields on the current record.

require(["N/currentRecord"], function (cr) {
    var record = cr.get();
    console.log(record.getValue({fieldId:"email"}));
});
{"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