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
@lfredo@lfredo 

can I run something to view the last time a list view was used/viewed

can I run something to view the last time a list view was used/viewed? 
 workbench? 
NagendraNagendra (Salesforce Developers) 

Hi Alfredo,

Unfortunately, this is not possible as of now. There is an active idea on the success community for which you can upvote so that it gets available in the mere future.

You can find the idea at the below link.

You can try using data loader which Includes created date, last mod date, and last view date.

Hope this helps.

Kindly mark this as solved if the reply was helpful.

Thanks,
Nagendra

 

Raj VakatiRaj Vakati
You can use SOQL query to get the last view date .. but not last name of the user who acccess it 


SELECT Id FROM ListView WHERE SObjectType = 'Case'


https://developer.salesforce.com/docs/api-explorer/sobject/ListView
https://salesforce.stackexchange.com/questions/167009/can-we-access-all-listview-records-of-any-object-using-listview-id
@lfredo@lfredo
Thank you Raj, I was able to pull the data, however, it only shows the list view I ran.

Is there a query for me to run based on the ORG  / all users  thanks a lot