1

我正在尝试为联系人添加电话活动。我使用以下代码添加活动,但在活动列表中看不到它。

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);

}

如果我遗漏任何东西,请提出建议。

4

1 回答 1

2

您需要将联系人作为logicalName 传递。这个:

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

应该:

{ id: ContactId, logicalName: "contact", type: "EntityReference" };
于 2014-11-03T19:48:05.587 回答