Hallo Zusammen,
ich versuche gerade Tochterdokumente per Script zu ändern, wenn deren Elterndokument gelöscht wurde. Wonach kann ich da abfragen? Ich habe es versucht, wenn die ID "" ist. Er findet aber, obwohl das Dok gelöscht wurde, die ID immer noch.
Sub Initialize
Dim session As New NotesSession
Dim db As NotesDatabase
Dim dc As NotesDocumentCollection
Dim doc As NotesDocument
Dim parentUnid As String
Set db = session.CurrentDatabase
Set dc = db.unprocessedDocuments
Set doc = dc.GetFirstDocument()
While Not(doc Is Nothing)
If doc.IsResponse Then
parentUnid = doc.ParentDocumentUNID
Msgbox parentUnid
If ( parentUnid = "" ) Then
Call doc.ReplaceItemValue ( "Doc_Deleted", 1)
Call doc.Save(True, False)
End If
End If
Set doc = dc.GetNextDocument(doc)
Wend
End Sub
Danke