List view sorting issue on records appears in random order when pages contains the same sorted values. DescriptionBrowsing through a sorted list view pages the records appearing in a wrong order when the current page contain the same value in the sorted column.Same record will appear on several pages. This is a limitation of the RDBMS which does not guaranteeing order with ORDER BY due to sorts on any paginated query. In this case, you're ordering by a field with very low cardinality, so second-level ordering within the groups is not going to be consistent query-to-query. Steps to Reproduce Reproduced on Madrid and New York Login on to your instance2. Go to incident.list and sort on "State"3. If not already selected, select "Show > 20 rows per page" from the additional action list4. Go to the last page and note the records there.5. Go back one page and notice the same record is displayedWorkaroundAdd an additional sort on number to guarantee consistent order across pagesRelated Problem: PRB650626