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!
Get only internalID's on search?
Hi,
Is it possible to perform a search and only get the list of internalID's without getting all the records in the Response.recordList field? Or even better would be to just get a boolean indicating if a search contains records or not? Something like:
//Build customerSearch based on my criteria, then
bool needUpdate = _service.search(customerSearch);
if(needUpdate)
//Flag another thread to process customers
Basically what I'm trying to do is get a thread dedicated to polling if there are records that I'm interested about, but have another thread process them, so I'd like to keep my initial polling thread load and its use of the connection to a minimum.
0