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
Josh Davis 13Josh Davis 13 

Does visual workflow use a batch or future method to update records?

I have a workflow that updates a Contact field when an Account field changes.
I also have a trigger that fires when a Contact is updated, IF this is true:
    if(!system.isBatch() && !system.isFuture() && TriggerExecution.isNew()) {
Both work on their own, but when the workflow updates a record, it doesn't fire the trigger.
Which of those three criteria would hold it up?