Increase list row count

firemoon
Mega Expert

Hi,

I want to increase the list row count. Please assist the steps to do that.

Row Count.png

8 REPLIES 8

Subhajit1
Giga Guru

AFAIK, this depends on which version you are in.


Please note, loading more records on a list is not a good idea as it puts pressure on the system's performance.


kris10
Giga Contributor

Hi Ravikumar,



The system property 'glide.ui.per_page' controls the list of options that your are seeing for 'Show' menu option.


The global setting in the 'User preferences' table for the record 'rowcount' determines the default setting of your systems list views.



As Subhajit mentioned returning and displaying more number of records will have an effect on the performance.



If your are a System Admin and doing some testing then you don't have to change any settings. Instead you can use a system parameter 'sysparm_force_row_count=<number of recoreds>'.



Example url:


https://demo010.service-now.com/incident_list.do?sysparm_force_row_count=9999999



Hope this helps


Man, you saved my life!

Anurag Tripathi
Mega Patron
Mega Patron

Hi Ravi,



This can be controlled n the context menu also like this



g_contextMenu.addAction('50', g_itemName, 'showRowsPerPage("50");', g_itemOrder);



for more information as to how to implement this, check out this wiki doc


Context Menus - ServiceNow Wiki


-Anurag