Hi Shaquib,
Could you create new plugin just for testing purpose without any logic to make sure whether the issue with the plugin or not. You could create something like this
using System; using System.ServiceModel; // Microsoft Dynamics CRM namespace(s) using Microsoft.Xrm.Sdk; using Microsoft.Xrm.Sdk.Query; namespace Microsoft.Crm.Sdk.Samples { public class CalculatePricePlugin : IPlugin { public void Execute(IServiceProvider serviceProvider) { //Extract the tracing service for use in debugging sandboxed plug-ins. ITracingService tracingService = (ITracingService)serviceProvider.GetService(typeof(ITracingService)); // Obtain the execution context from the service provider. IPluginExecutionContext context = (IPluginExecutionContext) serviceProvider.GetService(typeof(IPluginExecutionContext)); } } }
Thanks
Justin Jose
Hi Alam,
Can you please elaborate on the issue or mention steps with screenshots.
So it will help others to understand in right direction.
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 291,269 Super User 2024 Season 2
Martin Dráb 230,198 Most Valuable Professional
nmaenpaa 101,156