Currently Microsoft Dynamics UUI interface does not have support for displaying Auditing section within a UUI app. Thankfully there’s a super simple fix if this is needed. We just need to create a web resource to a html file with the following contents and reference <html> <head> <script> window.onload = function() { window.location.href = “/tools/audit/audit_area.aspx?”;…
Month: January 2019

How the dotmailer connector for D365 handles duplicates
Dotmailers connector solution for Dynamics 365 is a super whizzy way to integrate your CRM with your EMS ( if your EMS is Dotmailer it is anyway). Duplicate emails are not a thing in dotmailer But they probably are in your CRM (hopefully it’s not just me..), it’s possible that you have multiple contact records…

A Custom Workflow step to associate and dissassociate N:N relationships
N:N (also known as many to many) relationships are a useful way to tie together 2 records together in Microsoft Dynamics in instances where records need to be related to more than one other record within the same context. However, Microsoft bizarrely offer no out of the box tool to automate creating and breaking relationships…