Discussions
nlapiLoadRecord not working
We are trying to load a sales order object after saving a invoice to update some values in the sales order object. We use the nlapiLoadRecord function shown below, but as soon as we make a call to get a value, Netsuite reports the following cryptic error message. We have validated using the debugging code that the SalesOrderID that is being retrieved is correct, and per the Netsuite documentation the sales order is the record type.
The following error is displayed: TypeError: getValue is not a function.
var salesOrderRecord = nlapiLoadRecord('salesorder', salesOrderID);
salesOrderRecord.getValue('custbody_totalbilled');
Any help would be greatly appreciated.