Re: Transfer of documents from one application to another
I am assuming this is a one off to be done in the backend? If so, the following lotusscript can be run in an agent
Dim sess As NotesSession
Dim srcDb As NotesDatabase
Dim destDb As NotesDatabase
Dim sColl As NotesDocumentCollection
Dim sDoc As NotesDocument
%REM
Need to initialise SRCDB and DESTDB
%END REM
Set sDoc = srcDb.Alldocuments.Getfirstdocument()
While Not sDoc Is Nothing
Call sDoc.Copytodatabase(destDb)
Set sDoc = sColl.getnextDocument(sDoc)
Wend