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.
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