Hello,Is there an easy way in LotusScript of checking if you have write access to a group in the NAB without actually writing to it?
Thanks in advance.
Hello,Is there an easy way in LotusScript of checking if you have write access to a group in the NAB without actually writing to it?
Thanks in advance.
Subject: ignore
Subject: Is there a way in LotusScript of checking if you have write access to a group in the NAB?
You will either have Editor or higher access to the NAB (nabDb.QueryAccess), the [GroupModifiers] role (nabDb.QueryAccessRoles(session.UserName)) or your name (session.UserName) or a group you belong to (session.UserGroupNameList) will appear in the Owners or Administrators field.
Subject: RE: Is there a way in LotusScript of checking if you have write access to a group in the NAB?
Many thanks Stan!That’s what I wanted to know.
Cheers.