LastViewedDate in Salesforce
Note:This field is not available in KnowledgeArticle entity.https://help.salesforce.com/s/articleView?id=000332637&type=1 LastViewedDate is a date time field.To update this when SOQL retrieve the field, use FOR VIEW Clause.https://www.infallibletechie.com/2014/01/for-view-in-soql.html Sample SOQL:SELECT Name, CreatedDate, LastModifiedDate, LastViewedDate FROM ....