Search code examples
dynamics-crmdynamics-crm-2013dynamics-crm-2015

Need real time example of an action in Microsoft dynamics CRM


In Microsoft Dynamics CRM, I know the requirements when to use the plugin, workflows and custom workflows, but I cannot come across those cases or situations when I can use the actions or custom actions. Can anybody suggest me real time requirement when to use the action?

If possible, please demonstrate an "action" with an example.

Thanks,


Solution

  • One simple use is when you need to execute some server side code from JavaScript by clicking a button in the ribbon OR any where in the client side(not on an entity delete, update, create etc.... messages.) , then you need to create an Action.

    e.g if you have to implement some logic and you feel it would be very complex Or not possible on client side (JavaScript), then you should just create an action, implement your logic in that action(server side) and call that action in JavaScript.

    For more Info Actions