Watz
12/11/2024, 8:35 PMShai Coleman
12/11/2024, 9:49 PMquery.runSuiteQLPaged
might have some bugs depending on the order of the columns. They don't happen with query.runSuiteQL
You can try with SuiteQL Query Tool with the pagination option unchecked and see if you get the same issue.Watz
12/12/2024, 11:31 AMAND (lower(joinedList.scriptid) = 'to_be_processed' OR lower(joinedList.scriptid) = 'finished')
was twice as fast as
AND lower(joinedList.scriptid) in('to_be_processed', 'finished')
Shai Coleman
12/13/2024, 1:18 AMAND regexp_like(joinedList.scriptid, '^(to_be_processed|finished)$', 'i')
https://timdietrich.me/blog/netsuite-suiteql-regexp-like-keyword-searches/michoel
12/14/2024, 11:22 PMscottvonduhn
12/16/2024, 2:28 PM