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
TheRealistTheRealist 

Is there any possibility to track down the users who looked at particular records

Is there any possibility to track down the users who looked at particular records...clients requirement data is very confidential so they are expecting if there is any posibility to know every user who looked into a record
PavanKPavanK
Please try below.
http://www.cloudsuccess.com/blog/setting-up-last-viewed-by-in-salesforce/

If you want to track historic data, in such case create custom object to track last viewed by instead of the same object.
PavanKPavanK
For date there is standard field "LastViewedDate" for every object.
badibadi
If you are trying to track all the users who viewed a file, I would create an object and store the record viewers in that object

E.g.: If I am trying to track users who viewed Account.

Create an object AccountViews. Create 2 lookup fields to Account and User
Create an apex extension class  with the following method 
 
public void trackViews(){
      AccountViews av= new AccountViews(Account__c=acc.Id, ViewedBy=UserInfo.getUserId());
      try{
          insert av;
      }catch(DmlException e){
          System.debug('Account viewer record not created');
      }
  }

Add this line to VF Page

<apex:page StandardController="Account" extensions="AccountExtension" action="{!trackViews}">
Don't forget to give create permissions to all the users