You need to sign in to do that
Don't have an account?
How would you make a Trigger fire from a Workflow rule?
We are looking to fire a trigger based on the record result of a workflow rule. My initial thought would be to write an entirely new trigger that encorporates the logic of the workflow rule AND the existing trigger, but if we can just tell the existing trigger to fire after the workflow completes, it won't require developer time.
Thoughts?
Thoughts?
On your workflow, create a field update action.
Then, have the logic you want performed in an after update trigger.
The best practice for this type of logic is to have the trigger logic look only at the field that the workflow modified. Then, if you need to turn off or suspend the action, you can just inactivate the workflow. If you coded the trigger logic correctly, there shouldn't be any action.
All Answers
On your workflow, create a field update action.
Then, have the logic you want performed in an after update trigger.
The best practice for this type of logic is to have the trigger logic look only at the field that the workflow modified. Then, if you need to turn off or suspend the action, you can just inactivate the workflow. If you coded the trigger logic correctly, there shouldn't be any action.
The short version: I'm over-thinking it.
Thank you!