Posts

Showing posts from April, 2017

How to debug MSCRM Action in 2015,2016

Image
How to debug MSCRM Action? Here I am going to explain how we can debug an Action in Microsoft Dynamics CRM 2016. I think everyone might aware of calling an Action using JavaScript for both Global and Entity specific. First, we need to register the Action message and its step using Plugin in registration tool. Steps 1: Register your Action using plug in registration tool. Step 2: Click on Install Profiler in plug-in registration tool. Step 3: Click on “Start Profiling” option in plug-in registration tool. Step 4: Now call the Action using JavaScript. It will create a Plug-in Trace log message in “Plug-in Trace Log” entity in CRM with the Action message name. Ex: here in my case Action message name is new_editableGridGlobalAction How to call Action using JavaScript: function CallGlobalAction() { var data = {         "EntitySchemaName" : entitySchemaName,         "RecordID" : recordId,         "GridData" : gri

MSCRM Developer toolkit CRM Explorer not coming in Tools menu with VS 2015 (OR) Connect to Dynamics Server not coming in VS 2015 Tools menu

Image
This is going to helpful while developing plugins,workflows for MSCRM. Once everything is set up for developer tool kit for VS 2015, still we see the "CRM Explorer" or "Connect to Dynamics Server" not showing under Tools menu. Here is the tip we need to do. Open project .sln file with notepad or notepad ++ and below tags at the end of the file.              GlobalSection(CRMSolutionProperties) = preSolution                         SolutionIsBoundToCRM = True             EndGlobalSection