Entradas

Mostrando las entradas etiquetadas como Workflow Activity

Custom worklfow vs Custom plugins

A Custom Workflow Activity Plugin is very similar to a Plugin exempt that it is executed from within a CRM Workflow, Whereas Plugins Are executed on Events that Occur on the Entity. Workflow Activities -Custom workflows are triggered by standard workflows available in CRM. Triggers limited(Create, Update, StatusChange, Delete and On assign). -Workflows are better when you need the operation needs to be configured periodically by non programmer administrator, where you can implement the configuration part as standard workflow (Workflow1), and static part of the functionality as custom workflow which will be executed by the standard workflow (workflow1). -An workflow won't work in offline mode because it requires to have access to the crm live server to trigger the workflow, whilst in offline mode changes are not made to the live crm server...they are made locally on the client app and synced later. -Workflows can be manually executed, or automatically triggered by selec...