June 20, 2017

Practical Console Geekery

I am a geek. There is no way around it, and I have accepted my fate as such.

I became a developer because I so enjoyed the process of creation, the tinkering, and numbers. Do you have to love those same things to be a great programmer? Certainly not. A wild sense of curiosity doesn’t hurt, though.

Some of that curiosity and my tinkering habit has led me to an example of leveraging the Developer Console to gain a better understanding of SuiteScript. Using the Console’s “timer” API, I was able to very quickly illustrate the performance difference between loading a record to read a field value versus using the lookups we explored last week.

require(["N/record", "N/search"], function (r, s) {
    console.time("Load Record");
    var customerId = r.load({
        type: r.Type.SALES_ORDER,
        id: 874
    }).getValue({fieldId: "entity"});
    console.log(customerId);
    console.timeEnd("Load Record");
    
    console.time("Lookup");
    var customerId2 = s.lookupFields({
        type: r.Type.SALES_ORDER,
        id: 874,
        columns: ["entity"]
    }).entity[0].value;
    console.log(customerId2);
    console.timeEnd("Lookup");
});

I won’t give away the results here; to satisfy your curiosity, I recommend you copy and paste this into your own Console to see the results for yourself.

{"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