Zapier is a service that allows for integrations and task automations across multiple web applications. In my previous blog posts, I went over setting up the Facebook Lead Ad Trigger and the Microsoft Dynamics 365 Action in your Zaps. This blog post will go over configuring the Birthdate field mappi
Read the full article hereRecently I’ve been working on a system where I’ve had to recreate a fair few entities, and have needed them to work with an existing code base. The issue I came across was that in the original versions of the entities, the status reasons on different entities had been made with inconsistent values.
Read the full article hereSo I’m sure that you’ve all come across a situation in Microsoft Dynamics 365 before where you’ve created a Multi-line text object on a form, given it lots of space, and then been annoyed when the edit box doesn’t use up the entire space. Once the text length has passed the limits of the allocated
Read the full article hereWhen utilising web services in Microsoft Dynamics 365, you may need to serialize some data to a JSON string. The most convenient way of doing this is to use a .NET library called System.Web, specifically System.Web.Script.Serialization. However, in a sandboxed plugin, access to the System.Web family
Read the full article hereRecently I bumped into the below error while executing a custom plug-in in Microsoft Dynamics 365. This plug-in was using a NetworkCredential class to authenticate a SOAP request. On scrutinizing the problem, it was realized that the error was thrown due to the plug-in being registered in the Sandb
Read the full article hereOnce you’ve created your custom entities in Microsoft Dynamics 365, you’ll probably want to give them custom icons to make them more easily recognisable, and to give the entities a more finished feel. Thankfully, this is very easy to do in Microsoft Dynamics 365. Simply acquire the image that you w
Read the full article hereIn Microsoft Dynamics 365 when a stage changes in a Business Process, you may want to run a workflow to automate the fetching of information, an invoicing process, or any other number of things. This is incredibly easy to do with Microsoft Dynamics 365. In the new business process flow designer, si
Read the full article hereRegistering your app with Azure Active Directory can be incredibly useful for authenticating with services such as Microsoft Dynamics 365. A registered app can request an authentication token with which they can access the Dynamics CRM web API – given they have the correct permissions. The process f
Read the full article hereIn this blog I will cover how to retrieve Entity Metadata via the CRM SDK. There are a variety of reasons that you may want to do this in Microsoft Dynamics 365. Recently, I’ve needed to retrieve the display name for an entity while working with a generalised control. The request itself is an Organ
Read the full article hereWhen setting a lookup value using JavaScript in Microsoft Dynamics 365, the value you use has to be an array and the values in that array must be of type object. Within the object the required components are the id, logical name and the entity type. Retrieving a lookup field through JavaScript can b
Read the full article hereHaving recently created a custom app that integrates with Dynamics CRM, I came across a few issues that took me a while to resolve. This post I’m sharing some of the workarounds I have for those issues. Async, Async, Async… When working with the mobile SDK, one of the things you’ll find is that alm
Read the full article hereWhen modifying a Microsoft Dynamics 365 solution, you may require functionality that is portable and can be triggered in multiple circumstances. For example, running a rollup field calculation job, which is able to be done from SDK messages, but otherwise cannot be triggered manually out-of-the-box.
Read the full article hereIn Microsoft Dynamics 365 the creation process when creating a business rule is significantly different, in a good way! The business rules still use programming logic in a more visual and simplistic manner. Business rules are more than just business logic, they are extremely useful, and can be used
Read the full article hereDialogs are great, but it can be a hassle to show nicely in CRM, especially when activating them via a custom button. With different browsers, browser settings and configurations, opening a dialog may result in the dialog opening in a new tab, or a new window, and doesn’t allow for a consistent user
Read the full article hereAdding a quick view form onto a Main form in Dynamics 365 is a simple and effective way of displaying information from one entity to another entity. In this demonstration, I will show you how to create a quick view form in the custom entity Venue and display this quick view on the custom entity Even
Read the full article here