How to debug MSCRM Action in 2015,2016
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"...