Abbreviated (NotesName - JavaScript)

Read-only. A hierarchical name in abbreviated form.

Defined in

NotesName

Syntax

getAbbreviated() : string

Usage

This property returns the canonical name if the abbreviated name would be ambiguous.

This property returns the canonical name if the name has components not used in Domino® names.

Examples

This computed field returns John B Goode/Sales/East/Acme/US.
var nam:NotesName = session.createName(
	"CN=John B Goode/OU=Sales/OU=East/O=Acme/C=US");
return nam.getAbbreviated();
This computed field returns the canonical hierarchical name of the current user.
return session.getUserNameObject().getAbbreviated();