Hallo,
in einem Frontend Dokument habe ich folgenden Schalter eingebaut um aus einem anderen Backend-Dokument einen Dateianhang zu kopieren. Das klappt auch alles ganz gut. Leider bekomme ich beim nachträglichen Speichern die Frage, ob eine Konflikt-Dokument angelegt werden soll !
Was ist falsch in meinem Code:
Sub Click(Source As Button)
Dim ses As New NotesSession
Dim ws As New NotesUIWorkspace
Dim db As NotesDatabase
Dim collection As NotesDocumentCollection
Dim uidoc As NotesUIDocument
Dim docWork As NotesDocument
Dim docMaster As NotesDocument
Dim itemWork As NotesItem
Dim itemMaster As NotesItem
Dim masterID As Variant
Dim workID As String
Set db = ses.CurrentDatabase
Set uidoc = ws.CurrentDocument
Set docWork = uidoc.Document
workID = docWork.UniversalID
uidoc.Save
Call uidoc.Close(True)
'Quell-Dokument auswählen
Set collection = ws.PickListCollection(PICKLIST_CUSTOM, True, db.Server, db.FilePath, "Archiv\IGKnach Kunde", "Auswahl", "Bitte wählen Sie das Paket aus:" )
Set docMaster = collection.GetfirstDocument
Set itemMaster = docMaster.GetFirstItem( "tabelle" )
Set docWork = Nothing
Set docWork = db.GetDocumentByUNID(workID)
'Kopieren
Call docWork.RemoveItem("tabelle")
Call itemMaster.CopyItemToDocument( docWork, "tabelle" )
Call docWork.Save(True, False, False)
'Zum weiteren Bearbeiten wieder öffnen
Set uidoc = ws.EditDocument (True, docWork)
End Sub