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
Preeti AgarwalPreeti Agarwal 

I want to find out which apex trigger is updating a particular field. Is there any method to find out the same without much manual go through?

Ashish_SFDCAshish_SFDC
Hi Preeti, 


You can enable debug logs on a particular user and save a record. 

See the debug logs it will give detailed information about the action behind the save record which updates the field. 

http://www.salesforcegeneral.com/salesforcecom-debug-logs/


Regards,
Ashish
Preeti AgarwalPreeti Agarwal
Thanks Ashish..
Martha_SenetaMartha_Seneta
You can use the Force.com IDE to download your org's metadata (triggers, classes, workflow rules, etc.) and then search through the metadata for the name of the field in question.  The search results will contain all references to that field, making it easy to identify which code is setting it.

Force.com IDE Installation (http://wiki.developerforce.com/page/Force.com_IDE_Installation)