0

私は 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
(翻訳太字:「業務プロセス上のエラー」)

4

2 に答える 2

0

これは、既に追加されているプラ​​グインのターゲット エンティティに属性値を明示的に追加している場合によく発生します。

entity.Attributes.Add(...) ではなく

use entity["attributename"] = ...

于 2013-10-18T13:06:55.097 に答える