Author Archives: Alex Shlega

Masked fields in Dynamics 365

If you ever needed to create a password field in Dynamics, you first instinct was, probably, to create a javascript that will somehow encode the value entered into such a field. Luckily, creating such fields is not exactly the most popular requirement so we don’t have to think of this too often. However, when it does happen,… Read More »

Azure Functions and Dynamics

What comes to your mind when you realize you need to extend Dynamics with some server-side code? Plugins? Custom workflow activities? External applications? Those are all great options, but, for many years, they have been the only options available to us. And, yet, they all have limitations. Plugins can’t run on their own. Custom workflow… Read More »

TCS Tools: Expressions Syntax (CRMContext object and Sequence function)

CRMContext is a special object that is available to you in the code expressions, and that provides some core properties / methods you can use to work with Dynamics. Here is an example of a code expression that’s using CRMContext: CRMContext.Target[“name”] = “First Account”; This expression is going to set “name” parameter of the target record… Read More »

Dynamics 365: There is a HUGE change in how business processes work

So, yes, there is a change. Before I continue, I wanted to make sure you know what business processes are. If you are not too familiar with them, you might want to do some reading first: https://www.microsoft.com/en-US/Dynamics/crm-customer-center/create-a-business-process-flow.aspx Otherwise, I’ll simply walk you through this change. In my Dynamics 365 environment, I have an entity which is called… Read More »

TCS Tools: Solution Summary

TCS Tools is a set of components for Dynamics 365 – it’s a work in progress solution, you can find the summary of those components below. Feel free to download it and deploy in your Dynamics instance. Don’t forget to keep me posted on how it works out for you. In order to deploy the solution, follow… Read More »