When a display value for a column is created, the Multilingual (IsMultiLanguage) and List of permitted values (LimitedValues) properties are resolved.
Syntax
$columnname[D]$
To access the display value of a column's old value, combine the [O] and [D] properties.
$column name[OD]$
$column name[DO]$
Example of use:
A list of permitted values is defined for the restriction type of the HCL Domino server restrictions.
PrivateList=Run Personal Agent RestrictedList=Run Restricted Agent UnrestrictedList=Run Unrestricted Agent
If a server restriction has the PrivateList value, the Run Personal Agent value is displayed on the information form.
Example for use in templates:
The display value for the server restriction should be formatted from the name of the HCL Domino user and the display value of the restriction type.
Value = vid_Left($FK(UID_NotesUser).FullName1st$,39) & " [" & vid_Left($NotesAgentMgrType[D]$, 22) & "]"