Levi Pruss
05/21/2025, 1:32 PMCeligo AI
05/21/2025, 1:32 PMAI generated answer (using internal Slack threads):To unset the default ship address by a workflow in NetSuite, you can follow these steps: 1. Create a new workflow or edit an existing one that triggers on the record type where you want to unset the default ship address. 2. Add a new action to the workflow. The action type should be 'Set Field Value'. 3. In the 'Field' dropdown, select the 'Ship To Select' field. 4. In the 'Value' field, leave it blank. This will unset the value of the 'Ship To Select' field. Please note that this will only work if the 'Ship To Select' field is editable via workflows. If it's not, you might need to use SuiteScript to achieve this. Here is a sample SuiteScript code snippet that unsets the 'Ship To Select' field:
javascript
record.setValue({
fieldId: 'shipaddress',
value: null
});
******
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
05/21/2025, 1:32 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.843311131
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.83466655
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.833089948
Celigo AI
05/21/2025, 1:32 PM