我正在尝试为MS CRM运行示例插件。但是我得到了以下错误:
发生错误。联系系统管理员或参考 Microsoft Dynamics CRM SDK故障排除指南。
这是代码:
public void Execute(IServiceProvider serviceProvider)
{
// Obtain the execution context from the service provider.
IPluginExecutionContext context = (IPluginExecutionContext)
serviceProvider.GetService(typeof(IPluginExecutionContext));
// The InputParameters collection contains all the data passed in the message request.
if (context.InputParameters.Contains("account") &&
context.InputParameters["account"] is Entity)
{
// Obtain the target entity from the input parmameters.
Entity entity = (Entity)context.InputParameters["account"];
try
{
//check if the account number exist
if (entity.Attributes.Contains("account number") == false)
{
//create a task
Entity task = new Entity("task");
task["subject"] = "Account number is missing";
task["regardingobjectid"] = new EntityReference("account", new Guid(context.OutputParameters["id"].ToString()));
//adding attribute using the add function
// task["description"] = "Account number is missng for the following account. Please enter the account number";
task.Attributes.Add("description", "Account number is missng for the following account. Please enter the account number");
// Obtain the organization service reference.
IOrganizationServiceFactory serviceFactory = (IOrganizationServiceFactory)serviceProvider.GetService(typeof(IOrganizationServiceFactory));
IOrganizationService service = serviceFactory.CreateOrganizationService(context.UserId);
// Create the task in Microsoft Dynamics CRM.
service.Create(task);
}
}
catch (FaultException ex)
{
throw new InvalidPluginExecutionException("An error occurred in the plug-in.", ex);
}
}
}
}//end class
这是一个示例代码,我已经验证了此插件使用的所有实体和字段都已定义并且在那里。但我不断得到这个商业错误。
答案 0 :(得分:2)
我找到了解决方案:我们不得不明确提及“帐户”,而是使用:
Entity entity = (Entity)context.InputParameters["Target"];
错误的第二个原因是CRM内部的限制,不允许创建新帐户。用于创建新的“联系人”时工作正常。
非常感谢大家的帮助。
答案 1 :(得分:1)
请像这样检查
Entity entity = context.InputParameters["account"] as Entity;
有些时候不能正常工作。