I cannot for the life of me get the returned value from a search in NetSuite. When I use the debugger I can see the value, but I cannot access it.

var columns = new nlobjSearchColumn('custentity_employeenumber', null, 'max');
var results = new nlapiSearchRecord('employee', null, filters, columns);
var result = results[0].getValue('custentity_employeenumber');

Every time the debugger shows the result variable as null...I don't get it. I can see the value in the debugger...

enter image description here

I really just need the 2014103...or am I building the search wrong?

有帮助吗?

解决方案

When you put a summary on a search column, you must specify the summary when you retrieve the value as well. So, because you have:

new nlobjSearchColumn('custentity_employeenumber', null, 'max');

you must retrieve the value with:

results[0].getValue('custentity_employeenumber', null, 'max');
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top