CRM2011 - “字典中不存在给定的键”
本文关键字:不存在 字典 CRM2011 | 更新日期: 2023-09-27 18:35:50
我是CRM插件开发中你所说的"n00b"。我正在尝试为Microsoft的Dynamics CRM 2011编写一个插件,该插件将在您创建新联系人时创建一个新的活动实体。我希望此活动实体与联系人实体相关联。
这是我当前的代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.Xrm.Sdk;
namespace ITPH_CRM_Deactivate_Account_SSP_Disable
{
public class SSPDisable_Plugin: IPlugin
{
public void Execute(IServiceProvider serviceProvider)
{
// Obtain the execution context from the service provider.
IPluginExecutionContext context = (IPluginExecutionContext)
serviceProvider.GetService(typeof(IPluginExecutionContext));
IOrganizationServiceFactory serviceFactory = (IOrganizationServiceFactory)serviceProvider.GetService(typeof(IOrganizationServiceFactory));
IOrganizationService service = serviceFactory.CreateOrganizationService(context.UserId);
if (context.InputParameters.Contains("Target") && context.InputParameters["target"] is Entity)
{
Entity entity = context.InputParameters["Target"] as Entity;
if (entity.LogicalName != "account")
{
return;
}
Entity followup = new Entity();
followup.LogicalName = "activitypointer";
followup.Attributes = new AttributeCollection();
followup.Attributes.Add("subject", "Created via Plugin.");
followup.Attributes.Add("description", "This is generated by the magic of C# ...");
followup.Attributes.Add("scheduledstart", DateTime.Now.AddDays(3));
followup.Attributes.Add("actualend", DateTime.Now.AddDays(5));
if (context.OutputParameters.Contains("id"))
{
Guid regardingobjectid = new Guid(context.OutputParameters["id"].ToString());
string regardingobjectidType = "account";
followup["regardingobjectid"] = new EntityReference(regardingobjectidType, regardingobjectid);
}
service.Create(followup);
}
}
}
但是当我尝试运行此代码时:当我尝试在CRM环境中创建新联系人时出现错误。错误是:"字典中不存在给定的键"(链接 *1)。当我尝试保存新联系人时,错误会立即弹出。
链接 *1: http://puu.sh/4SXrW.png
(粗体翻译:"业务流程错误")
Microsoft Dynamics CRM使用术语活动来描述几种类型的交互。活动类型包括:电话,任务,电子邮件,信件,传真和约会。
活动指针(活动)实体
要使代码正常工作,请替换以下行:
Entity followup = new Entity();
跟
Entity followup = new Entity("task");
并删除以下行:
followup.LogicalName = "activitypointer";
另请阅读我的评论和Guido Preite上面的推荐。您需要修改代码以使其与联系人一起使用。
编辑
在将 CRM 引用到活动之前,请确保 CRM 中确实存在ContactId
。
如果您明确地将属性值添加到插件中已添加的目标实体,通常会发生这种情况。
而不是实体。Attributes.Add(...)
使用实体["属性名称"] = ...