PF
09/18/2025, 5:26 PMCeligo AI
09/18/2025, 5:26 PMAI generated answer (using internal Slack threads):To null all values in a multi-select field with SuiteScript, you can use the
setValues
method with an empty array as the value. However, it's important to note that SuiteScript 2.0 does not fully support multi-select fields, so you may need to use a workaround or client script to achieve this.
Here is a sample code snippet:
javascript
record.setValues({
fieldId: 'your_multiselect_field_id',
values: []
});
This will clear all the values in the multi-select field. If this doesn't work, you may need to use a client script to clear the field on page load.
******
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
09/18/2025, 5:26 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.786956906
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.779968381
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.779296935
Celigo AI
09/18/2025, 5:26 PM