function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Force.comForce.com 

Ordering workflow immediate actions

I have created a workflow rule which will send an email and update a field. But when this worflow runs, both the actions are executing simultaneously. I want to prioritise these actions.  Update Field should execute after Email alert action. 

 

Is this possible?

 

Thanks

Best Answer chosen by Admin (Salesforce Developers) 
Fahad AkhtarFahad Akhtar

if you want to save yourself from writting a trigger you can execute another workflow from this from workflow and do the field update after email.

 

In simple create two workflows.

All Answers

KaranrajKaranraj

No you cant change the workflow action execution process.

Instead wite a trigger to update a filed and send email, this will help you solve your problem 

Fahad AkhtarFahad Akhtar

if you want to save yourself from writting a trigger you can execute another workflow from this from workflow and do the field update after email.

 

In simple create two workflows.

This was selected as the best answer