You need to sign in to do that
Don't have an account?
determine if the system changed field value
I've got a requirement to handle a situation one way if a user changed a field and another way if it was changed by an automated process. By automated process I mean anything other than a user on a keyboard (apex, batch apex, trigger, wfr, flow, process builder - you name it.).
I'm actually quite flexible on how I determine it - the challenge here is being accurate and scalable.
Thanks,
I'm actually quite flexible on how I determine it - the challenge here is being accurate and scalable.
Thanks,
Create a trigger on your object. event would be before insert, After insert.
Thanks
Aniket
If anything is changed/modified, it is gong to SAVED.
Once you have create a tigger you can capture the event.
Please go thro'; this link - How to create a triggers.
https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_qs_trigger.htm
Thanks
Aniket