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.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Please note that on Saturday, April 18, 2026, at 8:00 PM Pacific Time, our Case Management System will undergo a scheduled maintenance for approximately 15 minutes. During this time, case creation via SuiteAnswers will be unavailable and inbound calls will be routed to Customer Service.
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