Hallo,
die Berechtigung habe ich überprüft, die stimmt soweit.
Hier wäre der Code:
Sub Initialize
Dim session As New NotesSession
Dim db As New NotesDatabase("", "")
Dim view As NotesView
Dim doc As NotesDocument
Dim nabDoc As NotesDocument
Set doc = session.DocumentContext
On Error Goto fehler
Call db.Open("<server>", "names.nsf")
Set view = db.GetView("($VIMPeople)")
aUser = doc.UserName(0)
Set nabDoc = view.GetDocumentByKey(aUser)
If Not (nabDoc Is Nothing) Then
nabDoc.JobTitle = doc.JobTitle
Call nabDoc.save(True, False)
End If
Print "Success"
Exit Sub
fehler:
Print Erl
Print Err
Print Error
Exit Sub
End Sub