Hallo,
mit den @Formel geht es bei mir nicht.
Habe es jetzt über ein Script gelöst:
Dim s As New NotesSession
Dim db As NotesDatabase
Dim ws As New NotesUIWorkspace
Dim view As NotesView
Dim doc As NotesDocument
Dim doc2 As NotesDocument
Set db = s.GetDatabase("", "names")
Set view = db.GetView("Locations")
Set doc = view.GetFirstDocument
While Not(doc Is Nothing)
Call doc.ReplaceItemValue("" ,"")
Call doc.ReplaceItemValue("" ,"")
Call doc.Save( True, True )
Set doc = view.GetNextDocument(doc)
Wend
Set doc2 = New NotesDocument ( db )
doc2.Form = "Certifier"
doc2.FullName = ""
doc2.IssuedBy = ""
Habe nun noch eine kleine Frage, kann ich einen neues Zertifikat in das lokale Adressbuch eintragen. Ein Zertifkat habe schon über das Script angelegt, nur den Schlüssel bekomme ich nicht in das neue Dokument.