NS AdminA
03/04/2025, 5:01 PMCeligo AI
03/04/2025, 5:01 PMAI generated answer (using internal Slack threads):Based on the conversations, it seems that adding a multiple select field to a transaction column line via script is not directly supported in NetSuite. However, there is a workaround that involves creating a temporary field and populating it with select options using a User Event (UE) script. Here's a sample code snippet:
javascript
let field = form.addField({
  id: "custpage_myNewList",
  type: serverWidget.FieldType.SELECT,
  label: "My New List"
});
field.addSelectOption({value: 1, text: 'Some Value'});Celigo AI
03/04/2025, 5:02 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.814522684
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.810313344
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.805851519
Celigo AI
03/04/2025, 5:02 PM