Personal views on first use

Hello,

Well I am feeling this error:

I have created a personal view, on first use, for showing only documents of the @username. This documents are accessed and can be changed by everyone, if someone else change it, it disappears from the personal view, then if the @username goes to the document edit/save it will appear again on the personal view.

Any idea ?

names_my_project_view - can have more than one name

Here is the code for selection in the personal view

SELECT Form = “NewProject” & DeclinedDate=“” & FinishedDate=“” &

@Contains(names_my_project_view; @Name([CN];@UserName))

Thanks

Paulo

Subject: Personal views on first use

If you wants to display only those documents which are concerned with the particular user onle and you have the username(uname) saved in your document then use the follwing ,

SELECT Form = “NewProject” & DeclinedDate=“” & FinishedDate=“” &

uname = @Name([CN];@UserName)

Subject: RE: Personal views on first use

Hi,

First of all my apologies on the subject I mean ‘Private views’ not ‘Personal’.

I need to use @contains because ‘uname’ is a list, so it may have more than one name.

Do you think that the problem is the @contains function ?

Thanks in advance,

Paulo

Subject: RE: Personal views on first use

@Contains should be used to find a substring inside a main string.

If you have a list with mutiple values, and you want to check for a single value inside the list, you should use:

@IsMember (singlevalue; list)

HTH

Nicolas Abesdris

Quintessence e-solutions Inc.