When the user rightclicks on database, he is able to see all views by choosing option"Go to…" how to disable" go to "option in view without putting a bracket to views or make changes on coding level??
Subject: disable go to option in view
You don’t. If there is something the users ought not be seeing, views are not security, Readers-type fields are. (Remember, all users with Reader access or higher can create their own private views in the database – the ACL setting only controls whether or not they can store those views on the server. If this is not a security matter, then users ought to be able to view the data in any way that makes THEIR lives easier.
Subject: a partial fix is to Use view aliases
if the view is named “This View”
make it “(Hidden This View) | ThisView”
That at least hides the view on the “GoTo” menu
and does not require coding changes elsewhere
Note: however if the user knows enough to Select CTRL SHIFT GOTO then this view will indeed be in teh list
as Stan has said elsewher views are not reliable security
Sorry