User Story
As a sales manager at ABC Corporation, I want to track all the Leads that have been modified in the last 30 days and are owned by sales personnel so that I can monitor the performance of my sales team and ensure that they are working efficiently.
SOQL
List<Lead> leads = [SELECT Id, FirstName, LastName, Email FROM Lead WHERE LastModifiedDate >= LAST_N_DAYS:30 AND Owner.Profile.Name = 'Sales'];
Video
Video does not exists.