Class Note

Represents a note that can be attached to any persistent object that supports this feature.

PropertyDescription
createdBy: String (read-only)Return the login ID of user that is stored in the session at the time the note is created.
creationDate: Date (read-only)Return the date and time that the note was created.
subject: String (read-only)Return the subject of the note.
text: String (read-only)Return the text of the note.

This class does not have a constructor, so you cannot create it directly.

MethodDescription
getCreatedBy()Return the login ID of user that is stored in the session at the time the note is created.
getCreationDate()Return the date and time that the note was created.
getSubject()Return the subject of the note.
getText()Return the text of the note.

assign, create, create, defineProperties, defineProperty, entries, freeze, fromEntries, getOwnPropertyDescriptor, getOwnPropertyNames, getOwnPropertySymbols, getPrototypeOf, hasOwnProperty, is, isExtensible, isFrozen, isPrototypeOf, isSealed, keys, preventExtensions, propertyIsEnumerable, seal, setPrototypeOf, toLocaleString, toString, valueOf, values

createdBy: String (read-only)

Return the login ID of user that is stored in the session at the time the note is created.


creationDate: Date (read-only)

Return the date and time that the note was created. This is usually set by the system, but may be specified if the note is generated via an import.


subject: String (read-only)

Return the subject of the note.


text: String (read-only)

Return the text of the note.


getCreatedBy(): String

Return the login ID of user that is stored in the session at the time the note is created.

Returns:

  • the username.

getCreationDate(): Date

Return the date and time that the note was created. This is usually set by the system, but may be specified if the note is generated via an import.

Returns:

  • the creation date.

getSubject(): String

Return the subject of the note.

Returns:

  • the subject.

getText(): String

Return the text of the note.

Returns:

  • the text.