Hallo,
habe folgendes Script:
Sub Click(Source As Button)
On Error Goto ErrorHaendler
Dim session As New NotesSession
Dim ws As New NotesUIWorkspace
Dim doc As NotesDocument
Dim uidoc As NotesUIDocument
Dim db As notesdatabase
Dim count As Integer
Set uidoc=ws.CurrentDocument
Set doc = uidoc.Document
Set db = doc.ParentDatabase
If ws.Prompt(Prompt_YESNO,"Neuzuweisung?",_
"Wollen sie?") = 0 Then
Exit Sub
Else
Dim acl As NotesACL
Dim entry As NotesACLEntry
Set acl = db.ACL
Set entry = acl.GetEntry(session.UserName)
Forall role In entry.Roles
entryRole = entryRole & role
End Forall
Select Case entryRole
Case "[Test]" :
doc.department_detail = "v_P"
........ usw.
Wenn der User einzeln in der ACL ist funktioniert das auslesen der Rolen, wenn der User aber in einer Gruppe ist bekomme ich in der Zeile :
Forall role In entry.Roles
die Fehlermeldung: Variable not set.
Wie kann ich die Userrole auslesen wenn der User einer Gruppe angehört?