Determine depositors on the fly

I see a plenty of notesCLentry stuff - but if a user is in a group you have to do NAB lookups to be able to use the level property.

If a user is a Depositor and creates a new document - once its saved - its no longer editable (to them)

@UserPrivilages is rather ambiguous as to exactly what is being returned (This function returns only the position of the privilege in the privilege list, not the name of the privilege. - But what is the privilage list?)

Is there a way to just determine right then - if the user is at Depositor level? Then I can defeat the postSave stuff without using a NAB lookup.

Or can anyone give me a better example of the usage of UserPrivilages?

TIA

Subject: determine depositors on the fly

@UserAccess is the function you want to use. For Depositors, it returns a “1” with the [AccessLevel] keyword.

Subject: Try @UserAccess(…)

Subject: RE: Try @UserAccess(…)

I will try this one. Thank you.