English 中文(简体)
2011年CRM 2011年CRM合同增加合同线
原标题:Add Contract Line to Contract CRM 2011

我希望索莫能进一步帮助我,因为我非常困在这里。我正试图从一个后胶片插件中为我的合同实体添加一条合同线。 我的代码是:

Guid c_Id = (Guid)entity.Attributes["contractid"];
DateTime start = (DateTime)entity["activeon"];
DateTime end = (DateTime)entity["expireson"];
Money money = new Money();
money.Value = 0;


//Set Instance for Contract Line 
Entity ContractLine = new Entity();
ContractLine.LogicalName = "contractdetail";

//Create Contract Line for the Contract
ContractLine["title"] = "PLUGIN FIRED";
ContractLine["activeon"] = start;
ContractLine["expireson"] = end;
ContractLine["totalallotments"] = 1;
//ContractLine["customerid"] = entity["customerid"];  
//ContractLine["productid"] = entity["productid"];
ContractLine["price"] = money;
ContractLine["contractid"] = c_Id;

service.Create(ContractLine);

出于某种原因,我得到一个错误,即“归属:合同不能设定为 NULL ”, 因为它实际上确实得到了合同的图形用户界面D, 正如我在另一个实体的另一字段上检查的那样。 如果索莫能帮助我, 我将非常感激。 谢谢 。

最佳回答

contractLine[“ Contractictil”] =c_Id;是 contractLine[“ Contractic”]=新的实体Reference(“合同”、c_Id); 吗?

C_Id 应该是实体参考而不是图形用户界面开发吗?

问题回答

任何机会,你都有另一个因你而发射的插件 正在丢弃例外。 这似乎总是咬我。 尝试除您正在处理的插件外, 将所有其他插件都弄坏...





相关问题
Creating a PDF of a Dynamics CRM 4.0 report programmatically

We are currently in the midst of upgrading our CRM 3.0 installation to CRM 4.0. One of the things we were doing from our external web site is pulling a PDF of a report using the ReportViewer control ...

"required field EntityId is missing" error

No matter what i attempt i keep getting the following exception being thrown by MSCRM 4.0 Invalid format of input XML for request SetStateITG_glcode: required field EntityId is missing here is ...

Microsoft Dynamics CRM 4.0 and Identity Lifecycle Management

Customers are stored in Dynamics CRM 4.0 an some need access to external facing application and therefore should be provisioned in the DMZ Active Directory. Does it make sense to use MS Identity ...

热门标签