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
DineshGuptaDineshGupta 

'Order of execution' of field updates in a processBuilder/Workflow action

Hi,

I have a process builder in which 3 field are getting updated in the same action. 
The 3 fields are opp_account_exec, opp_sales_exec, opp_owner

opp_account_exec, opp_sales_exec are gettign updated with the values from another object.
But opp_owner is getting updated with the opp_sales_exec it self.

If i assign a value to opp_sales_exec, process builder is working fine. opp_sales_exec  is getting updated with another value, and  opp_owner also getting updated with the same value.
But If opp_sales_exec is null, it is throwing an exception because opp_owner cannot be updated with the null.

So i want to know the order fields updated.

Thanks,
Dinesh