Maximum Row Limit for Remote Tables with Extended Capacity Enabled<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: #000000; } span { font-size: 12pt; font-family: Lato; color: #000000; } h2 { font-size: 24pt; font-family: Lato; color: black; } h3 { font-size: 18pt; font-family: Lato; color: black; } h4 { font-size: 14pt; font-family: Lato; color: black; } a { font-size: 12pt; font-family: Lato; color: #00718F; } a:hover { font-size: 12pt; color: #024F69; } a:target { font-size: 12pt; color: #032D42; } a:visited { font-size: 12pt; color: #00718f; } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } Overview: In ServiceNow documentation, Extended Capacity is also referred to as Enhanced Capacity. By default, Remote Tables display up to 1,000 rows. Enabling Extended Capacity increases this limit to 100,000 rows. This feature should be used with caution, as fetching large amounts of data may impact system performance. Steps to Enable Extended Capacity: 1. Navigate to sys_script_vtable.list. 2. Select the Remote Table you want to modify. 3. Check the Advanced option. 4. Open the Advanced tab and enable Enhanced Capacity. Considerations: - Remote Table data is not stored locally, so retrieving large datasets can take a long time and may affect the performance of other components using this table. - Thoroughly test before enabling in production. - Always apply filters to limit data retrieval rather than relying solely on row limits. Best Practice: Use filtering or query restrictions when fetching Remote Table data to maintain system performance, especially when Extended Capacity is enabled.