You need to sign in to do that
Don't have an account?
JMThornton
Trigger fire only on certain fields of an Object?
Hello everyone,
I'm trying to write a trigger that will only fire when a particular field is updated on an object. Not when any other field is modified. is something like this possible in APEX?
Any help is greatly appreciated, thanks!
-Jon
The trigger will fire no matter what during an update or insert, but you can check to see if the value changed in the field and process when the field you want changed.
All Answers
The trigger will fire no matter what during an update or insert, but you can check to see if the value changed in the field and process when the field you want changed.
Ah yes, this should work. Many thanks!