Dies ist in der Tat ein Bug von Notes 6.
Gefunden auf ldd:
Workaround:
One can loop through all of the views and folders in the database until the correct one is found - which is determined by testing for the name and checking whether the Readers field contains the users name.
The below example uses the GetView method if it's being executed on a R5 client or server otherwise it uses the loop workaround. In the below example the references to "POFU" should be changed to the name of the view/folder you would like to get a handle to:
If s.NotesBuildVersion<190 Then 'If running R5 then simply use GetView.
Set pview=db.GetView("POFU")
Else 'If ND6 will do loop workaround
Forall v In db.Views
If v.name="POFU" And Isarray(v.readers) Then
If v.readers(0)=s.UserName Then
Set pview=v
Exit Forall
End If
End If
End Forall
End If
'now pview has handle to the Personal On First Use version of the view/folder