How do you copy a datetime field from the current document to a new document in Xpages, SSJS.
I am coping other fields like this
inheritDoc.appendItemValue("AbbreviatedCustomer",currentDocument.getValue("AbbreviatedCustomer"));
var item:NotesItem = inheritDoc.replaceItemValue("Author", n1); item.setNames(true);
item = inheritDoc.replaceItemValue("AuthorAccess", currentDocument.getValue("AuthorAccess")); item.setAuthors(true);
But I do not know how to copy a date field from the currentDocument to the inheritDoc. Thanks