Limit on Displayed Data in a Record

Is there a default limit to the amount of data displayed within a Record view?  I have a view that has 235 rows and 40 columns. When I try to display the data from this view, only 42 rows appear.  I can export the full dataset and I can search for and filter for the full range of values in the table.  But the row count and pagination isn't showing the correct values. 

  Discussion posts and replies are publicly visible

Parents Reply
  • +1
    Certified Lead Developer
    in reply to naomi0001

    Hi ,

    This happens in case if your view doesn't have a unique identifier[Primary Key in your CDT]. You can verify that by running the below SQL code.

    SELECT COUNT(DISTINCT <PRIMARY_KEY_COLUMN_NAME>) from <YOUR_RECORD_VIEW_NAME>;

    If the above result is not equal to the actual rows count. It means your record is referring to a view which doesn't have a unique identifier. You may have to build your view to have a unique identifier which can be referred as a Primary Key in your CDT.

Children