Using the Dynamics CRM 2011 API Although the OrganizationServiceContext is the primary object we’ll be demonstrating, there are others that directly relate to it. Throughout my code samples, I reference …
OrganizationServiceContext The OrganizationServiceContext is one of the 4 primary ways you have to query data in Microsoft Dynamics CRM 2011. In the Microsoft.Xrm.Sdk.Query.QueryExpression in Depth Part II, I walked through using the …
CrmConnection On a recent project, we were using the OrganizationService, CrmConnection and the Late Bound methodology to build several WCF Services to interact with Microsoft Dynamics CRM 2011. We experienced …
AssignRequest | AssignResponse According to the Microsoft Dynamics CRM 2011 SDK Documentation, the purpose of the AssignRequest is: Contains the data needed to assign the specified record to a new …
AssociateRequest | AssociateResponse: Introduction Relationships in Microsoft Dynamics CRM 2011 can be handled many ways. One very common task is needing to create a link or association between records and …
Service Activity When something about a Service Activity changes, a common request is that a notification about that change is sent. For instance, if the time scheduled for a Service …
Because virtually everything that happens in Microsoft Dynamics CRM 2011 UI is processed through the CRM web services (OrganizationService, OrganizationDataService, it means if you can do it in the UI, …
Workflows – Introduction Workflows are one of the most useful and underrated features of Microsoft Dynamics CRM 2011 development. Xaml workflow allows you to write workflows without having to use …
CrmConnection The CrmConnection is one of the easiest to use features in the Microsoft Dynamics CRM 2011 SDK. A really clever company named ADX Studio in Regina SK came up …