The combination of HTML Web Resources, Web API and Javascript libraries in Dynamics CRM allows you extensively customize the user interface. Here I am going to show how you can create a mashup of these technologies to show a custom appointments timeline […]
The introduction of alternative keys in Dynamics CRM 2015 give us the ability to add unique identifier fields to entities in CRM. This is particularity useful when you need to store an unique identifier from an external system against a […]
When writing custom assemblies for Dynamics CRM you can add trace messages to your code to help track down problems and identify performance issues. Trace messages can logged by initializing the tracing service in your code and calling the Trace method. I usually add […]
I have started to have a look at the capabilities of interactive service hub for a potential project. The interactive service hub is a new user interface for Dynamics CRM currently targeted at service functionality. The interactive service hub user […]
Using NoLock can provide a performance boast to your CRM code when querying data. When you use NoLock the sql generated sets the transaction isolation level to READ UNCOMMITTED. What this means is that your query does not issue any […]