The post Trigger a Workflow on CRM 2015 using C# appeared first on CRM Kitchen.
]]>// Create an ExecuteWorkflow request. ExecuteWorkflowRequest request = new ExecuteWorkflowRequest() { WorkflowId = _workflowId, EntityId = _leadId }; // Execute the workflow. ExecuteWorkflowResponse response = (ExecuteWorkflowResponse)_serviceProxy.Execute(request);
Also this request is supported by Microsoft Dynamics CRM 2015 and Microsoft Dynamics CRM Online 2015 Update.
Source : https://msdn.microsoft.com/en-us/library/gg309600.aspx
The post Trigger a Workflow on CRM 2015 using C# appeared first on CRM Kitchen.
]]>The post How to fix Assembly does not have a strong name for CRM ? appeared first on CRM Kitchen.
]]>Referenced assembly XXX does not have a strong name.
These errors are taken in the following steps :
More info : https://msdn.microsoft.com/en-us/library/ms247123(v=vs.90).aspx
We recommend you that read in a very detail post on Hosk’s Dynamic CRM Blog
The post How to fix Assembly does not have a strong name for CRM ? appeared first on CRM Kitchen.
]]>The post Dynamics CRM 2013 Developer Toolkit for Visual Studio 2013 appeared first on CRM Kitchen.
]]>Normally there is no CRM Developer Toolkit installation file for Visual Studio 2013. But you can install it with some customization.
The post Dynamics CRM 2013 Developer Toolkit for Visual Studio 2013 appeared first on CRM Kitchen.
]]>The post (Resolved) CRM Explorer not showing up on Visual Studio appeared first on CRM Kitchen.
]]>GlobalSection(CRMSolutionProperties) = preSolution SolutionIsBoundToCRM = True EndGlobalSection
The post (Resolved) CRM Explorer not showing up on Visual Studio appeared first on CRM Kitchen.
]]>