There seems to be a way to retrieve and set the Originator ID (OID) using the Notes API as seen below, but how can we implement using LotusScript. Thanks in advance. :)
FYI
What are the components of a Note ID?
http://www-01.ibm.com/support/docview.wss?uid=swg27002668
ORIGINATORID - Uniquely identifies all replicas of the same note.
#include <nsfdata.h>
Definition :
typedef struct ORIGINATORID_tag {
DBID File;
TIMEDATE Note;
DWORD Sequence;
TIMEDATE SequenceTime;
} ORIGINATORID;
Sample Usage :
ORIGINATORID NoteOID;
/*
* Get the OID from the note AFTER it has been updated
*/
NSFNoteGetInfo (hNote, _NOTE_OID, &NoteOID);
http://www-12.lotus.com/ldd/doc/domino_notes/9.0/api90ref.nsf/f961929dc6dc14dc852561bf0067d1c4/85255d56004d3f63852564da0011dca7?OpenDocument