Reputation: 59
I am customizing dynamics-crm-online system to my company and I am totally new to this.
I create a dashboard which can take 8 charts components , but I get error message of maximum controls limit. How I can increase this limit ??
Upvotes: 2
Views: 3242
Reputation: 1
Changing the number of views limits in a dashboard (Microsoft Dynamics CRM)
Go to MSCRM_CONFIG
Go to DeploymentProperties Table
Where ColumnName = DashboardMaximumControlsLimit
Set IntColumn = 50
Upvotes: 0
Reputation: 1
You can check the record limit in the database with statement
USE MSCRM_CONFIG
GO
select ColumnName,IntColumn from DeploymentProperties where ColumnName='AggregateQueryRecordLimit'
You can set this higher.
Do keep in mind that it is at your own risk.
Upvotes: 0
Reputation: 1
There are two claims, you could take both of them as reference:
A dashboard can contain charts, grids, IFRAMEs, or web resources. By default, a single dashboard can contain up to six of these components.
You can change the number of components to be displayed on a dashboard using Windows PowerShell by setting DashboardSettings.MaximumControlsLimit property.
(Confirmation is needed to claim 1, because the doc(*) stated that DashboardSettings.MaximumControlsLimit applies to Dynamics 365 (online),
however, from other answers in forum, it seems that the proerty only works in on-premise.)
https://cargas.com/blog/now-you-can-have-more-than-6-dashboard-components/
Upvotes: 0
Reputation: 11
You should be able to do this using Powershell. Take a look at the following link that provides the PowerShell source on how to implement this:
https://msdn.microsoft.com/en-us/library/gg334200.aspx#set_controls_limit
The maximum documented number should be 20.
Hope this helps.
Upvotes: 0
Reputation: 5787
You cannot change this limit for online-environments (if you were on-premises it would be possible by changing the DashboardSettings.MaximumControlsLimit Property).
You could in theory iframe one dashboard inside another dashboard, but that is not a solution I would recommend: You simply have to prioritize what you show on your dashboards.
Upvotes: 2