Hi
I’ve been searching high and low for a formula which will simply return the list of user/server/group names listed in the ACL and can’t find one!?!
Is there one or am I just blind??
TIA
Mohib
Hi
I’ve been searching high and low for a formula which will simply return the list of user/server/group names listed in the ACL and can’t find one!?!
Is there one or am I just blind??
TIA
Mohib
Subject: Is there a formula which returns the ACL???
Not in the formula language, no. You’ll have to use script, and NotesDatabase.ACL.
Subject: Is there a formula which returns the ACL???
I think you are limited to LotusScript or Java.
Subject: Formula? - or - LostusScript?
@usernamelist
or
Dim db As New NotesDatabase( “Kampala”, “hello.nsf” )
Dim acl As NotesACL
Dim firstEntry As NotesACLEntry
Set acl = db.ACL
Set firstEntry = acl.GetFirstEntry
Subject: RE: Formula? - or - LostusScript?
do you mean @UserNamesList (plural)?
If so, this only returns info on the current user.