If you tried to access a Private on first use view in lotusscript, you probably got weird results or bug. If it’s your case, here’s why and a work-a-round.
Set nView = ndb.getView(“PrivateView”)
nView will be assigned to the server copy of that view with Version 6. The server copy of that view doesn’t support properties like AllEntries and many others.
The work-a-round is to loop in the Views propertie of the notesDatabase. If the nView.Name or Aliases if the view you want to work with, check is the “V” Flag is in the $Flag field of the design elements of that view. To get this document, set a notesDocument using the method GetDocumentByUnid of the notesDatabase passing notesView.UniversalID.
Good luck