0
我需要檢查插件是否在執行任何代碼之前觸發的機會。據我瞭解,您不能在CRM在線部署上使用商機獲得的插件消息。客戶關係管理2011在線C#檢查是否贏得機會
這裏是我的代碼片段:
//Get the target entity
Entity entity = (Entity)context.InputParameters["Target"];
OptionSetValue entityStatusCode =
(OptionSetValue)entity.Attributes["statuscode"];
if (entityStatusCode.Value == 3)
{
//Code to execute if opportunity won
}
這引發錯誤「給定鍵不在字典」。我一直在搜索,我似乎無法找到解決方案。任何人都可以解釋我需要在這裏做什麼?
在此先感謝。
你是怎麼註冊你的插件的? –
此插件註冊了哪條消息,哪條線路正在拋出錯誤消息? – Nicknow