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
test1 rettest1 ret 

Change Field Update

Hi, 

I have a requirement  where if there is a change in any of the fields of a custom object , how can i let the admin know that particular field is changed . How can i acheive this ???
 
Best Answer chosen by test1 ret
Abhishek BansalAbhishek Bansal
Hi ,

You can enable Track Field History for the fields which you want to keep track of.
By doing this a related list section will be added on the detail page layout of your object and in this section you can see the fields that have been changed. Both the old and new values will be visible there and also you can execute SOQL query on the this history records.
Please find more help in the link given below :
https://help.salesforce.com/apex/HTViewHelpDoc?id=tracking_field_history_for_custom_objects.htm

Please let me know if you need more information on this.

Thanks,
Abhishek Bansal.
 

All Answers

Abhishek BansalAbhishek Bansal
Hi ,

You can enable Track Field History for the fields which you want to keep track of.
By doing this a related list section will be added on the detail page layout of your object and in this section you can see the fields that have been changed. Both the old and new values will be visible there and also you can execute SOQL query on the this history records.
Please find more help in the link given below :
https://help.salesforce.com/apex/HTViewHelpDoc?id=tracking_field_history_for_custom_objects.htm

Please let me know if you need more information on this.

Thanks,
Abhishek Bansal.
 
This was selected as the best answer
test1 rettest1 ret
Thanks Abhishek!!! :)