Discussions
Join us for complimentary one-day events around the world and step into a future fueled by AI and limitless potential. Explore new breakthroughs, sharpen your skills, and connect with experts who are shaping what’s next. Experience bold keynotes, interactive learning, and connections that span the global NetSuite community. Discover what's next at SuiteConnect Tour 2026.
NetSuite has launched SuiteSuccess Wholesale Distribution Edition, in Japan. Please join us the webinar on February 12 that introduces NetSuite solution with demos and case studies for Wholesale Industry.
Register Now
Retrieve a Saved Search
I'm having trouble retrieving the actual data of a saved search. Here is a sample of my code:
// create search object
TransactionSearchAdvanced customSearch = new TransactionSearchAdvanced();
//set saved search id
customSearch.savedSearchId = "3667";
//perform the search
SearchResult resp = _service.search(customSearch);
Status status = resp.status;
if (status.isSuccess.Equals(true))
{
MessageBox.Show(recordList.Length.ToString());
}
At this point I'm just trying to validate the Length of the recordList in the response. When I try to reference any part of the "resp.recordList" I get the "Object reference not set to an instance of an object" error.
The strange part is that resp.totalRecords gives me the correct response of 30 records.