The new kid on the block!

Thursday, June 21, 2012

CRM Books (FREE) on my Skydrive

I've few books for Microsoft Dynamics CRM lovers and hope that it would benefit them in every way.

Feel free to write back.

Related Link

Monday, June 4, 2012

CHANGING 5000 LIST VIEW LIMIT

CRM 2011 has added a count to all list views but this count is limited to 5000 records; if you have more than 5000 records, you will get "Records 1-x of 5000+".

Note: This only applies to CRM 'On-Premise' installation.

USE MSCRM_CONFIG
GO

Update DeploymentProperties
Set IntColumn=-1
Where ColumnName='TotalRecordCountLimit'

-1 (or any negative number), will disable the limit but you can also change it to another limit.

Reset the IIS to apply the above changes.