Function
EN
Version 1.90
@Created
Note
NotesSystem
TimeDate
Syntax
@Created(NOTEHANDLE1);
Description
Returns the time/date value (TD) of the creation of the document with the NOTEHANDLE NOTEHANDLE1.
Example: @Created(NOTEHANDLE1)
DBHANDLE:=@OpenDB("TEST.NSF");
VIEWHANDLE:=@OpenView(DBHANDLE;"TEST VIEW");
VIEWPOSITION:=1:1:1:0:0:0:0:0:0:0;
NOTEHANDLE1:=@OpenNoteByPosition(DBHANDLE;VIEWHANDLE;VIEWPOSITION;NOTEHANDLE1);
@LogReport(@Created(NOTEHANDLE1));
NOTEHANDLE1:=@CloseNote(NOTEHANDLE1;0);
VIEWHANDLE:=@CloseView(VIEWHANDLE);
DBHANDLE:=@CloseDB(DBHANDLE);
A database is opened, a document is searched for and opened, its creation date is output, it is closed again, and finally the database is closed again.
Note : This text was machine-translated and may contain inaccuracies.
