What is the SQL Criteria used for the view? I assume you used the Schema Extension wizard to create it?
Thanks
Yes, I created the view with Schema Extension and the view contains a SQL-code like this: FIRST_VALUE(UID_Person) OVER(PARTITION BY ColumnName)
But I've fixed the problem, I've forgotten to have a PK on the view. When I extended the view with UID_Person and made that IsPKMember and IsUID then it worked.
Yes, I created the view with Schema Extension and the view contains a SQL-code like this: FIRST_VALUE(UID_Person) OVER(PARTITION BY ColumnName)
But I've fixed the problem, I've forgotten to have a PK on the view. When I extended the view with UID_Person and made that IsPKMember and IsUID then it worked.