- Salesforce Advanced Administrator Certification Guide
- Enrico Murru
- 413字
- 2021-06-24 12:24:13
Field history tracking
After answering the question Who sees what?, now we are going to answer the question, Who did what?
With field history tracking, we know which user changed which field on a given record. This information is displayed on the history list (that we should add to each page layout that we are using):

History data is retained for up to 18 months if we access a record through a browser or 24 months for a record accessed via API (for example, Data Loader, Workbench, or any other tool) by querying the ObjectHistory object (for example, AccountHistory, or CustomObject__History for custom objects).
Here is an example of the SOQL query that delivers the same result as the Account History list of the previous example:
Select CreatedBy.Name, CreatedDate, Field,OldValue, NewValue from AccountHistory Where AccountId = '0011i000007K2LEAA0' Order By CreatedDate DESC
This leads to the following:

There are a few limitations regarding field history tracking:
- The old value is not tracked for text fields with more than 255 characters.
- Old/new values are not automatically translated—that is, if you have a Pizza Type picklist whose value is changed by an Italian user to Al Salame, it won't display as Pepperoni for an English-speaking user (all translations referred to here are made with the Translation Workbench; for more information, refer to Salesforce Support at https://help.salesforce.com/articleView?id=workbench_overview.htm&type=5).
- The field's label is always translated into the current user's language (for example, Pizza Type will be shown to an Italian user as Tipo di pizza).
- Date, date/time, and number fields are always displayed with the viewing user's locale.
- If an Apex trigger causes a change in a field that the current user doesn't have access to, the change is not tracked. Field history always follows field-level security settings.
- Time fields aren't tracked in the field history list.
To enable field tracking, jump to Setup | Object Manager | ObjectType | Fields & Relationships and click the Set History Tracking button:

- Clojure Data Analysis Cookbook
- Oracle SOA Governance 11g Implementation
- Dreamweaver CS3網頁制作融會貫通
- Getting Started with Containerization
- Grome Terrain Modeling with Ogre3D,UDK,and Unity3D
- Blender 3D Printing by Example
- Hands-On Reactive Programming with Reactor
- 邊緣智能:關鍵技術與落地實踐
- Extending Ansible
- Photoshop CS5圖像處理入門、進階與提高
- Unreal Development Kit Game Design Cookbook
- 手把手教你學Photoshop CS3
- 網管員世界2009超值精華本
- R Statistics Cookbook
- 暗戰強人:黑客攻防入門全程圖解