In the MS CRM 2011 implementation process, the list page only displays 50 data by default, for customers with large data volumes, it is particularly inconvenient to display only 50 data, so customers often ask to increase the number of data bars displayed on the list page, and the following describes two ways to modify it:
First, the method of changing the database:
SELECT Systemuserid, FullName from systemuser WHERE FullName = ' Your name '
e.g. SELECT Systemuserid, FullName from systemuser WHERE FullName = ' Ben hosking '
Then you use the GUID value just retrieved and run the SQL below UPDATE usersettings SET paginglimit = WHERE Syst Emuserid = ' ... '
E.g.update usersettings SET paginglimit=1000 WHERE systemuserid = ' 2a01d976-322e-e ... '
Second, the use of the system's own features modified:
Open CRM, click "File", select "Options", and then in "General" the number of "records per page" is modified;
Comparison of the two methods:
Method One, you can arbitrarily set the number of data display, but it is not recommended to change the number of display bars too large, because it will affect the loading speed of the page;
Method Two, without the operation of the database, can be directly in the system modification, but there are certain limitations, the maximum can only be modified to: 250;
MS CRM 2011--Modify List page data display number