Nour Khaled
04/17/2025, 9:28 AMCeligo AI
04/17/2025, 9:28 AMAI generated answer (using internal Slack threads):To add a select field in a Suitelet where the source is the subsidiaries list in NetSuite SuiteScript, you can use the
Form.addFieldsourcejavascript
var form = serverWidget.createForm({
    title: 'My Form'
});
var subsidiaryField = form.addField({
    id: 'subsidiary',
    type: serverWidget.FieldType.SELECT,
    label: 'Subsidiary',
    source: 'subsidiary'
});serverWidget.createFormform.addFieldsourcesourceList/RecordCeligo AI
04/17/2025, 9:28 AMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.841347575
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.835997701
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.833853424
Celigo AI
04/17/2025, 9:28 AM