Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
Stay in the Know
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
Calling a saved search
I want to call a saved search and display the results in a list.
In the code below I've created a list, added the same columns that are returned in the saved search results. However, I get an unknown error. Can someone tell me what is wrong with the following code?
function demoList(request, response) { var list = nlapiCreateList('DC - CI Inactive Churches'); list.setStyle(request.getParameter('style')); var column = list.addColumn('internalid', 'text', 'Internal ID', 'LEFT'); column.setURL(nlapiResolveURL('RECORD','customer')); column.addParamToURL('id','internalid', true); list.addColumn('entityid','text', 'Customer ID', 'LEFT'); list.addColumn('companyname','text', 'Church Name', 'LEFT'); list.addColumn('url','text', 'Web Address', 'LEFT'); list.addColumn('phone','text', 'Phone', 'LEFT'); var searchResults = nlapiSearchRecord('customer', 'customsearch_dc_ci_inactive_churches'); list.addRows( searchResults ); response.writePage( list ); } 0