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
jai raj 6jai raj 6 

Trigger fires or not??

I have an object with two fields on two fields one before update trigger is there,but that user have only one field have access at that time trigger will fire or not??
Amit Chaudhary 8Amit Chaudhary 8
Yes Trigger will fire, Trigger will not check field level access.
Please let us know if this will help u
ManojjenaManojjena
Hi Jai raj,
this is for sure that your trigger will fire when you will do any DML in the particular object which has trigger also it will fire based on your event on your trigger .

Second thing is that Apex code executes on System mode not user mode so will you update your field  value ,how ever your user will not able to see as he has not level of access .

you can execute the trigger and check in work bench your doubt will clear .

Let me know if it helps !!
Thanks 
Manoj
Muthuraj TMuthuraj T
Hi,

For your question, answer is YES.
For every DML, your trigger will fire it executes based on event.