```require(['N/search','N/record'],function(s,r){ ...
# suitescript
s
Copy code
require(['N/search','N/record'],function(s,r){
function t(){
	console.log('search: '+JSON.stringify(s.lookupFields({type: s.Type.ASSEMBLY_ITEM, id: 3814, columns: ['isdropshipitem']})));
	console.log('record: '+r.load({type: r.Type.ASSEMBLY_ITEM, id: 3814}).getValue('isdropshipitem'))
}t()});

search: {"isdropshipitem":false}
record: true