pen one
06/24/2021, 5:36 PMvar originalLicenseType = result.getValue({ name: "custbody_licenseType"});
recCurrent.setValue({ fieldId: 'custbody_licenseType',value: originalLicenseType});
I also tried using getText and setText but that is doing nothing - no error either
var originalLicenseType = result.getText({ name: "custbody_licenseType"});
recCurrent.setText({ fieldId: 'custbody_licenseType',text: originalLicenseType});
Any ideas on how I can accomplish what I am looking to do?Sandii
06/24/2021, 5:37 PMoriginalLicenseType
is, its not the same format you would use to set a multiselect field via code.Sandii
06/24/2021, 5:38 PMsetValue
pen one
06/24/2021, 8:14 PM