Latest posts
-
Dynamics 365 – Set Business Process Flow Stage Automatically by Using a Workflow
Create a new Process in Category of Worklfow. Choose the entity with the same name as Business Process Flow you want to Set it’s Stage. Check the “Run this Workflow in the background” option. Check the “Process Changes” option. Click “Select” button. Choose your “Record Type” with the Entity Type and choose your attribute for… Read more
-
Dynamics 365 ExecuteMultipleRequest
In Dynamics 365, we can use ExecuteMultipleRequest message to execute multiple requests at once as bulk. There are times that you need to update multiple records that fits a condition, creating new records for a new business request or deleting records. The first thing comes in your mind would be, put all the records inside… Read more
-
Dynamics 365 – Auto-Generated Power BI Reports For Your Views
With this new cool feature, now Power BI automatically generates the visuals for you, so you can start exploring the data immediately. Power BI quick reports generate a report automatically based on the page context. It automatically detecss data types. You don’t need to setup or configure anything in Power BI. But Power BI license is… Read more
-
Dynamics 365 Workflow Activity- Add Selected User To a Team by a Workflow(AddMembersTeamRequest)
To add an user to a Team, use the below code to create a Custom WorkflowActivity. Deploy it and use it in your desired Workflows as workflow step. Read more
-
Dynamics 365 Workflow Activity- Send Email to Team Members by a Workflow(Add Team Users to the Email Recipients)
In Dynamics 365, you can’t send E-mail to the team members out of box. But workaround for this is easy. First you create your Email in Workflow by using out of box Create Record step. If you have any “To” or “CC” users other than team members, you add those users to the e-mail in… Read more
-
Dynamics 365 Workflow Activity – Calculate Rollup Field(CalculateRollupFieldRequest)
If you need to update/re-calculate a rollup field by manually or by a condition you can use the below code to create a custom Workflow Activity for yourself. Then use this WF Activity in a workflow based on your business requests.🥳 The best part of this code is, you can use any entity and rollup… Read more