2014-11-03 2 views
1

연락처에 phonecall 활동을 추가하려고합니다. 다음 코드를 사용하여 활동을 추가했지만 활동 목록에서이를 볼 수 없습니다.내 코드가 활동을 추가 할 수없는 이유는 무엇입니까?

var ContactId = guid; //Contact GUID 

var trigger = new XrmServiceToolkit.Soap.BusinessEntity("phonecall"); 
trigger.attributes["subject"] = "Hello"; 
trigger.attributes["regardingobjectid"] = 
        { id: ContactId, logicalName: "Contact", type: "EntityReference" }; 

triggerId = XrmServiceToolkit.Soap.Create(trigger); 

} 

나는 무엇이든 놓친다면 친절하게 제안합니다.

답변

2

logicalName으로 문의해야합니다. 이 :

{ id: ContactId, logicalName: "Contact", type: "EntityReference" }; 

은 다음과 같아야합니다

{ id: ContactId, logicalName: "contact", type: "EntityReference" };