Recently I did a data migration from Microsoft Dynamics CRM On-Premise to CRM Online using the SSIS integration toolkit. This tool is useful for migrating data between CRM instances without needing to export everything into Excel spread-sheets or write a console application. While migrating opportun
Read the full article hereThe Dynamics CRM team at Microsoft are doing an amazing job rolling out releases with great features. Here are some of our favourite new features. Modern Design The modern design reduces the number of clicks and eases navigation by pulling together relevant information from multiple locations.
Read the full article hereEvery time I have to do something with activities in CRM it ends up taking way longer than expected. Unlike most entities in CRM, activities have a lot of unusual relationships and field types, not to mention all the behind the scenes processes which tend to not like when you introduce your own cust
Read the full article hereWhile performing a data migration between Dynamics CRM instances using the SSIS Integration Toolkit I encountered this error while attempting to migrate Accounts: Principal team (Id=xxx, type=9) is missing prvReadAccount privilege This error occurs because many of these Account records are owned by
Read the full article hereBy default, CRM doesn’t allow us to create our own custom fields using rich text or HTML, similar to the email Description out of the box. However, if we’re building forms that push data to a website dynamically, we may need the ability to build some HTML in CRM. In the past there’s been a f
Read the full article hereIn CRM 2015 online, the grid control has new methods and events to assist the developer to get additional data about the grid like Ids or an array of selected records. In this blog post, I’ll show you two applications you might need to apply during your development. When a subgrid control is added t
Read the full article hereWe recently had a query around why a solution import would fail when it was exported from CRM 2013 into a 2015 RTM environment with the following message: 0x80040216 Unable to find metadata information for attribute !Process_Custom_Attribute_URL_ This is caused by having a workflow where it would se
Read the full article hereA common requirement is to open a dialog process from JavaScript on click of a command bar button etc. This is quite easy to do, simply using window.open and passing in the right parameters to get the dialog working with the right record. The problem is that this doesn’t allow us to run code when th
Read the full article hereIn my previous blog post I introduced a new JavaScript library for calling processes, and I showed the function for calling a workflow. In this blog post I’m going to look at the function for calling an action. Actions can be very useful when coupled with JavaScript, as it means we can execute compl
Read the full article hereIn the past if you've needed to call a workflow from JavaScript, you need to build a massive XML SOAP request making sure to pass in the correct attributes and conditions to get the request working. This is tedious and messy, especially when there are many places you need to do this in a solution. I
Read the full article hereWe recently encountered an error with an online instance of Microsoft Dynamics CRM 2015 Update 1, where the web interface was hanging when trying to change the absolute URL of a SharePoint Site record. The progress spinner would say “Saving…” and would just keep spinning without a result or any erro
Read the full article hereCRM 2013 introduced light-boxes for most popups to make the UI look cleaner with less browser alerts and popups. However, these internal functions were not included in the SDK, so as developers we couldn't access them for our custom code. Instead, we've been forced to use alertDialog and confirmDi
Read the full article hereIn CRM 2015, you can now execute multiple CRM requests in a single transaction. This gives developers the ability to easily rollback or cancel transactions if one of the CRM requests within the transaction fail. For example, imagine you have a website which allows customers to buy products. Each p
Read the full article hereWhen writing custom FetchXML reports in Dynamics CRM, it is sometimes useful to find out what isn't there as opposed to what is. For example, you may want to find the Contacts that haven't had any activities recorded against them for a specified period of time. Unfortunately, there are no out of the
Read the full article hereWhile writing a report using FetchXML, I needed to perform aggregation on a linked-entity where I encountered a problem in that fields that are not aggregated have to be grouped. For most fields this is fine; however, for DateTime data types this can be problematic as you cannot group by a date on i
Read the full article here