Eystein Bye
03/06/2023, 4:47 PMCONTACT_ALREADY_EXISTS
๐ค
var rec = record.load({
type: record.Type.CONTACT,
id: contactId
});
rec.setValue({ fieldId: 'middlename', value: middlename });
rec.save();
Ben Tanner
03/06/2023, 5:00 PMEystein Bye
03/06/2023, 5:01 PMEystein Bye
03/06/2023, 5:03 PMBen Tanner
03/06/2023, 5:06 PMscottvonduhn
03/06/2023, 5:10 PMentityid
, has to be unique within the same company, and I donโt think that restriction can be changed. We have a few large companies where two people had the same name. You can either add a middle initial (if known and if different), or employ a workaround adding something unique to the name, like a number (1, 2, 3) to the end, phone extension, or job title, to make them unique.Eystein Bye
03/06/2023, 7:46 PM