Dynamics CRM: How to connect to CRM through the code
Starting development for Microsoft Dynamics CRM 2011, the first challenge we face is how to connect to the CRM. Communication with Microsoft Dynamics CRM 2011 through the code mostly comes to...
View ArticleDynamics CRM: Get current user information
One of the most frequently used operation with OrganizationServiceProxy is to get information about the current user. For simplicity such operation could be implemented as an extension to the...
View ArticleDynamics CRM: Import of several files to one CRM Entity at once = An item...
Importing data to CRM programmatically (so-called Bulk Import), we create an Import instance and then create one or more ImportFile instances associated with the Import and upload the files. Each...
View ArticleDynamics CRM: Awaiting for async job completion
Having initiated an async job through the code, it’s often needed to wait until the job is completed. A very simple method doing that could be found in SDK samples provided by Microsoft. The...
View ArticleDynamics CRM: Awaiting for Bulk Delete completion
In my previous post I described my method for awaiting of async job completion. I have a similar one for awaiting Bulk Delete operation completion as well. Dealing with Bulk Delete we have to keep...
View ArticleDynamics CRM: How to add a map to an Entity form
Let’s say we have an Entity with Latitude and Longitude attributes and we want to display a pushpin at this point on a map when opening the Entity‘s form. Briefly, I offer to add a section to the...
View Article