How to change the maximum number of records per page in MIcrosoft Dynamics CRM
Many of you will wonder how you can increase the number of records displayed on every page of Microsoft CRM. Basic Microsoft leaves as maximum number of records, but for some reason if we increase the number of records per page, we can use this SQL command:
UPDATE UserSettings
SET PagingLimit=5000
WHERE SystemUserId IN
(SELECT SystemUserId
FROM SystemUserBase
WHERE FullName like 'UserName%')
It is important to choose the database in your organization for which you want to make this change.
Stay Tuned
Fulvio
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Fulvio Giaccari
CRM Consultant
SB Soft S.r.l.
Microsoft Gold Certified Partner
Sede Operativa : Via Santa Maria Valle, 3 - 20123 Milano (MI)
url: http://www.sbsoft.it
Tel.: (0039)0200681010
Fax: (0039)0200681400
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Comments
-
The records-per-page is a per-user setting. To change in Dynamics 2011, from the web UI, go to File menu tab -> Options -> General Tab. It's under "Records Per Page"
-
The reason why Microsoft does this is, performance.
The more results you will show in your list, the slower the results will be listed.
This method is also not supported by Microsoft.

Like
Report
*This post is locked for comments