Using RecordFilterList function does not filter properly if there are null values

Certified Associate Developer

Hi all,

I have created a entity-based record type which is based on a view.  I have created a user filter in the record based on a!recordfilterlist function. The user filter does not give correct result.  The field on which I am using the filter has null values in the view.  Can someone help me to fix this ussue?

Thanks in advance.

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Lead Developer
    in reply to gayathris0003

    Views are really the stored results of a SELECT statement.  Therefore, they have no real underlying architecture that would require a primary key.

    However, you can make sure that each of your rows has a unique value by SELECT-ing one of the primary keys from the data you've joined to make the VIEW.  Of course, that only works if only one of those rows is joined per row of the VIEW.

Children