Accessing local object columns
Syntax
$<column name>:<data type>{<format>}$
Examples for use in templates
The Active Directory user display name should comprise of the first and last name of the Active Directory user. The template for ADSAccount.Displayname is:
If $Givenname$<>"" And $Surname$<>"" Then
Value = $Surname$ & " " & $Givenname$
ElseIf $Givenname$<>"" Then
ElseIf $Surname$<>"" then
End If
If an employee is disabled, the leaving date should be set. The template for Person.Exitdate is:
If $IsInActive:bool$ Then
End If
Related topics
Accessing columns of an object connected by a relation
The only relation currently permitted is the foreign key relation.
Syntax
$FK(<foreign key column>).<column name>:<data type>{<format>}$
Example for use in templates:
An Active Directory user’s first name should based on the assigned employee. The template for ADSAccount.Givenname is:
Value = $FK(UID_Person).Firstname$
Related topics
Accessing the old column value
Syntax
$columnname[o]$
Example for use in process step parameters:
Optional process step parameters are not generated if the value is set to Nothing or not assigned in the value template. This makes it possible to limit the number of parameters for target system components. If such a value should be cleared, an empty string should be transferred instead of Nothing.
A value template may look like this:
If $Lastname[o]$ <> $Lastname$ Then
End If
NOTE: For some standard columns such as XDateInserted, XDateUpdated, XUserInserted, XUserUpdated, XOrigin, XIsInEffect, and XMarkedForDeletion, the new values are only mapped after saving the object. This means that when processing the templates, the new column value is always the same as the old value (for example, $XDateUpdated[o]$ = $XDateUpdated$).
Related topics
Accessing the display value of a column
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) & "]"
Related topics