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
Raghu.2020Raghu.2020 

List of fields that update "Last Modified Date".

Hi,

I'm not sure if this is a valid question but I have a request to find out the List of fields that update the last modified date on change of field value in each entity for some custom objects in my org.
 
Best Answer chosen by Raghu.2020
SarvaniSarvani
Hi Satya,

The Last Modified Date field on any record is changed when ever a DML call is commited succesfully by User. There need not be field change necessarily. For example, consider a record and make note of last modified date of the record. Now try eidting the record and do not change any field values on the record but click on save... this action will change the last modified field on the record. Similarly any field to which a user has edit access on the custom object can lead to change of Lastmodified date. Therefore any update or Successful DML operation to any field  (ALL fields except Last modified date) on standard or custom objects will update Last Modified Date.

Hope this helps! Please mark as best if it does

Thanks

All Answers

AbhishekAbhishek (Salesforce Developers) 
Hi Satya,

There are two methods for the above requirement.

Enable field history tracking for the field (or fields) that you wish to track
Create a new custom (DateTime) field, and create a workflow rule that updates this new DateTime field every time your target field is modified

Method 1 is the easiest to set up and scales up to 20 fields (this is a limit imposed by Salesforce). It takes a little more work to pull the information for use in an Apex class, and has another important limitation that I'll get to later.

Method 2 is the easiest to use in an Apex class but takes longer to set up and doesn't scale well at all (you need a new custom field, a new workflow rule, and a new field update for each field you want to track in this manner). I wouldn't recommend this to anyone unless you only need to track one field. Even then, this method incurs more technical debt than I'm comfortable with.

How to use tracked field history

Making use of field history tracking information in an Apex class requires a query. For standard objects (Account, Case, Contact, etc...), the object you'll be querying is simply <sObjectName>History(AccountHistory, CaseHistory, ContactHistory, etc...) For custom objects, you'll be querying the respective __History object (the history object for My_Custom_Object__c is My_Custom_Object__History). You just replace __c with __History

The history tracking object always comes with the same 8 fields, CreatedById, CreatedDate, Field, Id, isDeleted, NewValue, OldValue. The 8th field is a lookup to the object that history is being tacked on. For Custom Objects, this appears to always be ParentId. For Standard Objects, this is <sObjectName>Id (AccountId, CaseId, ContactId, etc...)

Assuming you're working in a Trigger, or otherwise have access to Trigger Context Variables, your query would end up looking like this

[SELECT ParentId, Field, CreatedById FROM My_Custom_Object__History WHERE ParentId IN :trigger.newMap.keySet()]

Now, the problem with making business logic depends on tracked field history is that it is currently impossible to insert data into the history object in a unit test. You can't insert directly into history objects, and field history is not tracked in unit tests (even if the field is set up for history tracking).

You could manage to test the logic that depends on field history by wrapping your history query inside an if(test.isrunningtest()), and providing your own 'history' records in your test, but this limitation was a dealbreaker for me.

The other limitation is that you can't track field history on formula fields, auto number fields, or roll-up summary fields.

Another option

To get around the limitations of standard history tracking (if you need to track more than 20 fields, track a formula field, or want to reasonably test your code), you'd need to use a different method than the two listed above:

Create your own Custom History object, as well as an interface to use it
This option is more work upfront but gives you the most freedom. I've done this in my org so that the interface to my custom History__c object is sObject agnostic, and only requires a single line of code to use in my Update triggers.

Adding or removing fields from my Custom History tracking is a matter of updating a fieldset (which can be done without a deployment).

Adding a new sObject to my Custom History tracking requires a new lookup field on my custom History__c object as well as a new fieldset on the newly tracked object.

Mark this as the best answer by closing this thread so that it gets removed from the unanswered queue and will be available as a proper solution for others.

Thanks.
SarvaniSarvani
Hi Satya,

The Last Modified Date field on any record is changed when ever a DML call is commited succesfully by User. There need not be field change necessarily. For example, consider a record and make note of last modified date of the record. Now try eidting the record and do not change any field values on the record but click on save... this action will change the last modified field on the record. Similarly any field to which a user has edit access on the custom object can lead to change of Lastmodified date. Therefore any update or Successful DML operation to any field  (ALL fields except Last modified date) on standard or custom objects will update Last Modified Date.

Hope this helps! Please mark as best if it does

Thanks
This was selected as the best answer