KM
04/06/2026, 1:49 PMCeligo AI
04/06/2026, 1:49 PMAI generated answer (using internal Slack threads):Based on the conversations, it seems that you want to filter a multiselect field in SuiteScript 1.0. Unfortunately, the threads do not provide a direct answer to your question. However, they do provide some insights on how to handle multiselect fields and filtering in SuiteScript. In SuiteScript, you can use the
anyof and allof operators to filter multiselect fields. The anyof operator returns records that match any of the specified values, while the allof operator returns records that match all of the specified values.
Here is a general example of how you can use these operators:
javascript
filters: [
["custbody_job", "anyof", [...values]]
]
In this example, custbody_job is the field you want to filter, anyof is the operator, and values is an array of values you want to filter by.
However, please note that the actual implementation may vary depending on your specific use case and the structure of your data.
******
Disclaimer:
This response was generated by an artificial intelligence assistant based on previous conversations from multiple Slack channels, and may contain inaccuracies or mistakes.
******Celigo AI
04/06/2026, 1:49 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.814849854
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.808166623
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.799957275
Celigo AI
04/06/2026, 1:49 PM