Keep the original Universal ID when copying a Lotus Notes document
Use this LotusScript code to keep the original Universal ID when copying a Lotus Notes document with the NotesDocument class.
If you use the copy method of the NotesDocument class, you typically receive a new and different Universal ID for the new Lotus Notes document. The LotusScript code below allows you to keep the original Universal ID.
Function NoteCopy2DBWithSameUNID (noteToCopy As NotesDocument, DbDest As NotesDatabase) Dim noteDest As NotesDocument Set noteDest = DBDest.CreateDocument noteDest.UniversalID = noteToCopy.UniversalID Call noteToCopy.CopyAllItems(noteDest) Call noteDest.Save(True,True) End Function
Do you have comments on this tip? Let us know.
This tip was submitted to the SearchDomino.com tip library by member Fabrice Proudhon. Please let others know how useful it is via the rating scale below. Do you have a useful Lotus Notes, Domino, Workplace or WebSphere tip or code snippet to share? Submit it to our monthly tip contest and you could win a prize.
Related resources from SearchDomino.com:
- Expert Advice: Why is Netherlands an invalid Universal ID for choosing holidays?
- Expert Advice: Put a Universal document ID in a field using iNotes
- LotusScript Reference Center