Hallo,
bin am Ende.
Mit folgender Action können User mit der Rolle [Editor] und Editorenrechte Dokumente ändern.
Sub Initialize
Dim ws As New NotesUIWorkspace
Dim session As New NotesSession
Dim db As NotesDatabase
Dim collection As NotesDocumentCollection
Dim doc As NotesDocument
Set db = session.CurrentDatabase
Set collection = db.UnprocessedDocuments
Set doc = collection.GetFirstDocument
TempFormName = "GMPD_S"
Title = "Change Value(s)"
If ws.DialogBox(TempFormName, True, True,False,True, ,,Title ) Then
Call doc.Save( True, True )
Else
End If
End Sub
Nur bei einem User funktioniert es nicht, habe Ihm auch schon Managerrechte gegeben, aber nichts.
Jemand eine Ahnung was da sein könnte?
Boris