Rick Goodrow
06/12/2024, 2:46 PMCONTACT
record to a CUSTOMER
record? I thought it was a normal sublist operation but getting an error SSS_INVALID_SUBLIST_OPERATION
Selcuk Dogru
06/12/2024, 2:47 PMRick Goodrow
06/12/2024, 2:48 PMrecord.attach()
methodbattk
06/12/2024, 3:11 PMRick Goodrow
06/12/2024, 3:14 PMN/Record
API, but my brain just wasn't connecting the two. Appreciate the heads up.Rick Goodrow
06/12/2024, 3:18 PMrecord.create()
...
record.attach()
...
record.save()
or do I have to do
conRecord = record.create()
...
conIID = conRecord.save()
cusRecord = record.create()
...
cusRecord.save()
cusRecord.attach(...conIID...)
battk
06/12/2024, 3:20 PM