iSuite
08/12/2019, 4:39 PMscottvonduhn
08/12/2019, 6:16 PMfunction preSavePageFunction(options) {
const { data, errors } = options
data.forEach((element, index, array) => array[index].ns_multi = element.SF_Multi__c.split(';').join(','))
return { data, errors }
}
scottvonduhn
08/12/2019, 6:17 PMSF_Multi__c
for your Salesforce field. It is mapping the values to a new field named ns_multi
rico
08/15/2019, 4:02 PMmatt.graney
08/15/2019, 8:30 PM