You need to sign in to do that
Don't have an account?
How many Dynamic Dashboards are being used?
Hi
In our Enterprise Edition I know we have a limit of 5 Dynamic Dashboards. When I try to set up a new one, it says 'you have reacjed your limit'. However, I can not find a list of the 5 that have been set up. Its a complex Org with 1600 Dashboards, how can I find which ones are Dynamic?
Thanks
Phil
List<Dashboard> da = [Select Id, Title, RunningUserId, Type from Dashboard Where Type = 'LoggedInUser'];
doc,
http://www.salesforce.com/us/developer/docs/api/Content/sforce_api_objects_dashboard.htm
Hi Jia
Many thanks for your suggestion! Actually I found another option (which I needed to work on a bit). Which is to build a custom report type for Dashboards. As long as you add all the fiels, especially 'Dashboard Running User', then that will identify which are theDynamic dashboards.
Many thanks!
Phil
That's great, thanks for sharing.
Jia
Another option for DBAmp Users
SELECT D.Title, D.Type FROM dbo.Dashboard AS D
WHERE Type = 'LoggedInUser'
Also available from Developer Console
Query Editor
SELECT Title, Type FROM Dashboard WHERE Type = 'LoggedInUser'
Execute