Tag Archives: TCS Tools

A selfie for your worfklow

Imagine your were a workflow, and you were configured to start on the update of a few different attributes. Well, maybe you were a workflow which were supposed to start on the update of email and phone# fields on the account entity. You would be a great workflow, and you could do lots of things.… 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 »

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 »

Dynamics CRM (TCS Tools): Use a workflow to update related entities

If you read my previous post, you know how you can use TCSTools Lookup Setter custom worfklow activity to find a lookup value using a fetchxml query: http://www.itaintboring.com/dynamics-crm/dynamics-crm-use-a-workflow-to-set-a-lookup/ Let’s imagine a different scenario. What if you had an account and related contacts, and what if you wanted to push a field value you just entered on your account… Read More »