I have encountered a lot of issues with private views on the first use in R6.
First of all, getview method only opens public views and folders.
Secondly, I managed to open the private view via script and when I tried to remove it using something like this:
If theview.IsPrivate Then
If Not Isempty(theview.Readers)Then
Call theview.remove
end if
end if
It removes the private AND the public as well. Probably it does because I am designer, but I believe it should NOT do that. Fortunately I had a backup of the view.
I tried to debug the script, and the debugger does not like the “IsPrivate” property and exit anyway returning to the workspace.
Probably another option is to create a view from a template view or something like it, but I believe that the create view method can be only applied to shared views… isn’t it?
Anyway, just to share my experience and ask how can I remove a private view without removing the original in R6 !!