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
KCBKCB 

workflows

Would like to know the workflow performance Tuning, For example we can write multiple field updates in one workflow or we can write multiple workflows for each field updates, Complicated conditions can be provided in both the ways. But, this matters while execution therefore am curious to know best practice and impact on the Execution Context it will take for each work flow, And if there are any max out time if i create N number of workflows or 1 work flow with N number of field updates?

Thanks in Advance
RamuRamu (Salesforce Developers) 
The below article might give some guidelines on creating complex workflows

http://www.slideshare.net/dreamforce2006/tips-tricks-for-building-advanced-workflow

I personally prefer creating one workflow with mulitple actions vs N number of workflows with individual actions.
sharathchandra thukkanisharathchandra thukkani
If you are doing multiple field update actions.. It means you assign the new values to all the fields and you do only one update statement.