0
유일한 역할이 아닌 연락처에 여러 역할을 할당 할 수 있어야합니다. 지금은 연락처에 역할을 설정하려면 다음 코드를 사용하고 있습니다 :NetSuite - 연락처에 여러 역할을 할당하는 방법
//get the internal ID of created contact
var contactInternalId = ((RecordRef) response.baseRef).internalId;
//set roles
var attachContact = new AttachContactReference();
attachContact.attachTo = new RecordRef
{
type = RecordType.customer,
typeSpecified = true,
internalId = customerId
};
attachContact.contact = new RecordRef {internalId = contactInternalId};
attachContact.contactRole = new RecordRef {internalId = role};
var resp = _service.attach(attachContact);
나는 (내가 MultiSeceltCustomFieldRef를 사용할 수있는 권한을 달리) 연락처에 여러 역할을 설정하는 방법을 볼 수 없습니다.
인터넷 검색을 시도했지만 많은 정보가 없습니다.
아무쪼록 고맙겠습니다. 감사합니다.
감사합니다. 시도해보십시오. – Pritorian
아니요, 작동하지 않습니다. 최신 제공 역할 만 설정합니다. – Pritorian