MS CRM 2011--Modify List page data display number

Source: Internet
Author: User

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

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.