List Restrict Row Count
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-17-2017 09:34 AM
Hi,
Many of our users are setting their row counts at 200, and 100 for the list views.
I looked in the system properties. The wiki told me to type sys_properties.list (which did not work).
What do I need to do to restrict the number of rows to let's say 20 or 50?
Thanks,
Kathy

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-17-2017 09:56 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-21-2017 05:29 PM
If I have answered your question, please mark my response as correct so that others with the same question in the future can find it quickly and that it gets removed from the Unanswered list.
If you are viewing this from the community inbox you will not see the correct answer button. If so, please review How to Mark Answers Correct From Inbox View.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-27-2017 09:57 AM
Hi Pradeep,
I was traveling and did not have access to my laptop. However, yes your response was helpful.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-17-2017 10:14 AM
Hi Kathy,
You can change the default value for system property 'glide.ui.per_page' to 20, 50.
Even if you change this value globally, it wont be effective for existing users. For new users who login this property becomes effective.
For existing users, you need to run a background job to reset their user preference to the highest value that you set for rowcount. You can use this script. This is one of best practice to tackle system performance issue.
var gr = new GlideRecord('sys_user_preference');
gr.addQuery('name=rowcount');
gr.query();
while(gr.next()){
gr.value = '50'; // highest value set
gr.update();
}
Thanks
Please Hit like, Helpful or Correct depending on the impact of the response