Actions

 

Applies To: Dynamics 365 (online), Dynamics 365 (on-premises), Dynamics CRM 2016, Dynamics CRM Online

Actions are a type of process in Microsoft Dynamics 365. You can invoke actions, including custom actions, directly from a workflow or dialog, without writing code! More information:  Invoke custom actions from a workflow or dialog  

Actions can also be invoked by running custom code that uses the Microsoft Dynamics 365 Web services.

You can call actions:

  • From code that executes within a plug-in or custom workflow.

  • From a command that is placed in the application and executes the operation using JavaScript code.

  • From an integration with another system that uses the Microsoft Dynamics 365 web services.

  • From a custom client application that uses the Microsoft Dynamics 365 web services.

Developers can learn more in this Microsoft Dynamics 365 SDK topic: Create your own actions.

In This Topic

Why use actions?

Configurable messages

Global messages

Why use actions?

Actions open a range of possibilities for composing business logic. Before Actions, the primary way to implement business processes was limited to plug-ins or custom workflow activities. With Actions, you can perform operations, such as Create, Update, Delete, Assign, or Perform Action. Internally, an action creates a custom Dynamics 365 message. Developers refer to these actions as ”messages”. Each of these messages is based on actions taken on an entity record. If the goal of a process is to create a record, then update it, and then assign it, there are three separate steps. Each step is defined by the capabilities of the entity – not necessarily your business process.

Actions provide the ability to define a single verb (or message) that matches an operation you need to perform for your business. These new messages are driven by a process or behavior rather than what can be done with an entity. These messages can correspond to verbs like Escalate, Convert, Schedule, Route, or Approve – whatever you need. The addition of these verbs helps provide a richer vocabulary for you to fluently define your business processes. You can apply this richer vocabulary from clients or integrations rather than having to write the action within clients. This also makes it easier because you can manage and log the success or failure of the entire action as a single unit.

Configurable messages

Once an action is defined and activated, a developer can use that message like any of the other messages provided by the Microsoft Dynamics 365 platform. However, a significant difference is that now someone who is not a developer can apply changes to what should be done when that message is used. You can configure the action to modify steps as your business processes change. Any custom code that uses that message does not need to be changed as long as the process arguments do not change.

Workflow processes and plug-ins continue to provide similar capabilities for defining automation. Workflow processes still provide the capability for a non-developer to apply changes. But the difference is in how the business processes are composed and how a developer can write their code. An action is a message that operates on the same level as any of the messages provided by the Microsoft Dynamics 365 Platform. Developers can register plug-ins for Actions.

Global messages

Unlike workflow processes or plug-ins, an action doesn’t have to be associated with a specific entity. You can define ”global” Actions that can be called on their own.

See Also

Create your own actions
Configure actions
Invoke custom actions from a workflow or dialog
Business process flows
Workflow processes
Dialogs

© 2016 Microsoft. All rights reserved. Copyright