If you need this for Lotus Client use only... you can do it, but it's tricky and requires a bit of familiarity with the Notes Views.
You need to create a "Shared, Desktop Private at First Use" view. You'll have to create a new view from scratch, since you cannot convert an existing "Standard" one into a "Private" one.
The option to do so, is in the "Create View" dialog, under the View Type drop down list to the right of the View Name field.
A private view will appear with a yellow key besides its name in the views list.
A private view differs from a shared one in the fact that the view itself is copied into the client desktop file as soon as any user opens it the first time (including you!). For every subsequent opening after the first, the (local) client copy is used instead of the (shared) server copy.
This has one advantage and two drawbacks.
The advantage is that now you can define custom selection formulas based on the @UserName
function.
For example, following your request, you can define your selection formula as
SELECT ((Form = "MyForm") & (Name = @UserName))
Doing so each and every user who will open said view once, will be seeing only the documents in which the Form field is "MyForm" and the Name field equals their username.
The drawbacks are that, if you need to perform maintenance on a private view (e.g.: change, add or remove a column), you need to clear all the local copies on all the clients that opened the view once.
This is performed by simply removing the Application icon from the Notes desktop (a popup will warn you that removing the icon will delete locally stored views) and reopen it.
If you don't do that, the clients will continue to use the old view design, as stored in the locally-stored copy, instead of the new freshly-edited one.
Also, private views don't work if you use the application via webbrowser and this is the second major drawback
One trick to avoid the need to remove the application icon to clear old views design, would be to name the view differently each time you need to edit it, forcing the users to store another fresh copy (for example if the view is accessed via an outline link). But this would leave behind a number of dirty clients with old, dead views stored inside them, still accessible if the user has access to the "right-click > go-to" menu.
Two things are also to be kept in mind about "Shared, Desktop Private" views:
- they are stored in the local
desktop*.dsk
file. Deleting such file will also delete all private views from all the applications opened in the user's client.
- they are client dependent, not user dependent. This means that the same user using the application from another client will use the views stored on that client, which may already have been accessed before by another user, and therefore will be customized by that username.