All Collections
Salto for Netsuite
Troubleshooting
Deploying elements containing not yet supported values
Deploying elements containing not yet supported values
Ofer Rozenman avatar
Written by Ofer Rozenman
Updated over a week ago

"NOT_YET_SUPPORTED" is a saved term used by NetSuite's SDF, used to describe a value that is prevented from being deployed between environments by NetSuite.

In order to deploy a TransactionFrom that includes a value of [NOT_YET_SUPPORTED]:

printingType = { 
basic = {
pdfLayout = "[NOT_YET_SUPPORTED]"
htmlLayout = "CLASSICHTMLTRANSACTIONLAYOUT"
}
}

You should remove the 'pdfLayout' key and its value. Your element code should now be:

printingType = {
basic = {
htmlLayout = "CLASSICHTMLTRANSACTIONLAYOUT"
}
}

In order to deploy a Workflow that includes a value of [NOT_YET_SUPPORTED] under 'sendmailaction':

template = "[NOT_YET_SUPPORTED]" 
usetemplate = true

You should remove the 'template' key and set 'usetemplate' to 'false', like so:

usetemplate = false

In both cases, please make sure to configure the element in NetSuite's UI after the deployment succeeds.

Did this answer your question?