Hallo
Ich habe Das Skript noch einmal umgebaut:
Sub Initialize
Dim s As New notessession
Dim db As notesdatabase
Set db= s.currentdatabase
Dim uiw As New NotesUIWorkspace
Dim otherdoc As NotesDocument
Dim otherview As NotesView
Dim othercol As NotesDocumentCollection
Dim uiv As notesuiview
Set uiv = uiw.currentview
Dim MulCol As Variant
currentviewname="_Personen"
Set otherview = db.GetView(currentviewname)
' alle Documente
' Datei zuweisen
Open "E:\Domino\data\Adressbuch.txt" For Output Access Write As #1 ' auf Server
' Open "C:\Adressbuch.txt" For Output Access Write As #1 ' aus Aktionen
' Ansicht lesen
Set otherdoc = otherview.GetFirstDocument
While Not otherdoc Is Nothing
' Datei schreiben
Print #1,otherdoc.columnvalues(1)
Print #1, otherdoc.columnvalues(3)
' Ansicht lesen nächster Satz
Set otherdoc = otherview.GetNextDocument(otherdoc)
Wend
' Datei schließen
Close #1
End Sub
Starte ich den Agenten per Hand an läuft er. Signiere ich die Datenbank und lasse den Agenten mit dem Schedul laufen bekomme ich folgende Fehlermeldung:
Error creating product objekt Kann das ein Rechteproblem sei?
Was kann man tun?
Gruß Rainer