How to find all the Subscribed or Scheduled Reports in Salesforce?
1. Go to Reports Tab. 2. Select All Reports. 3. Sort by Subscribed column.
1. Go to Reports Tab. 2. Select All Reports. 3. Sort by Subscribed column.
Run the below Query SELECT Id, FolderName,Title FROM Dashboard WHERE Type IN ( 'LoggedInUser', 'MyTeamUser' ) (Or) SELECT Id, FolderName,Title FROM Dashboard WHERE Type = 'LoggedInUser' OR Type = 'MyTeamUser' ....
Salesforce Lightning Dashboard filter supports the below data types 1. Picklists2. Lookups3. Checkboxes4. Text5. Numeric6. Date7. Datetime Date and Datetime range for selection is not currently supported. Relative date and ....
Check the below steps to create a single joined report to show Account and its related Contacts, Cases and Opportunities. 1. Create a Joined Report. 2. Select Accounts, Contacts, Opportunities ....
1. Create a custom report type. 2. Select Users as the Primary Object. 3. Select Identity Event Logs (User) in Relate Another object. 4. In the report filter add, App: ....
Age For an open opportunity, the number of days since the opportunity was created. For a closed opportunity, the number of days between the creation date and the closed date. ....
On the Schedule Report page, specify a running user who has access to the folder where the report is stored. The access level of the running user determines what other ....
Password Expiration Date is available on the standard Users report type to find the Password Expiration Date for users in Salesforce. So, using the standard Users report type, we can ....
Sample SOQL: SELECT Id, DeveloperName, FolderName, CreatedBy.Name, LastModifiedBy.Name FROM Dashboard WHERE Type = 'LoggedInUser' Output: ( OR ) 1. Create a Custom Report Type using the Dashboards type. 2. Create ....