Hoping you all can clarify something for me. I fre...
# suitescript
m
Hoping you all can clarify something for me. I frequently see code that looks like this:
Copy code
var count = vendorBillSearch.runPaged().count;

vendorBillSearch.run().each(function (result) {
	// do some work here
	return true;
});
Does the call to
runPaged()
and the subsequent call to
.run().each()
execute the search twice?
b
yes
👍 1