Category Archives: Dynamics CRM

Use Tracing in CRM 2011 Plugins

CRM SDK provides way for you to include the debug details about your plug-in in case you need to trace the plug-in execution. For this you will have to initialize the “ITracingService”. The service provides way to trace the details and display it whenever plug-in fails and throws an exception. //Initialize the serviceITracingService tracingService =… Read More »

Connections Role in CRM 2011

CRM 4.0 provided the ability to define the relationship between entities using the Relationship feature. However this was only available for defining relations between Account, Contact and Opportunity. This concept has been enhanced further with the introduction of Connections in CRM 2011. Moreover, this has now been extended to include any entities including custom entities… Read More »

CRM 2011 – Dialogs Explored

Dialogs are the new feature addition to CRM 2011. Just like we had the ability to extend CRM using plugins and workflows, we now have the option of Dialogs as well. What is different in Dialog? Dialog runs synchronously like the Plugins but they have the option of providing user interface to accept custom information… Read More »