SAIL Function: a!recordLink()
Defines a link to a record view. Links can be used in charts, grids, hierarchy browsers, images, link fields, milestones, pickers, and rich text.
See also: RecordType, Record Design, Link, Paging Grid, Images
Parameters
Name | Keyword | Type | Description |
---|---|---|---|
Label | label | Text | Text displayed as the link name the user clicks on. |
Record Type | recordType | RecordType | The record type that contains the record. |
Identifier | identifier | Any Type | Individual record ID within the record type.
|
Dashboard | dashboard | Text | The URL of the dashboard to open for the record. Default is "summary" |
Visibility | showWhen | Boolean | Determines whether the component is displayed on the interface. When set to false, the component is hidden and is not evaluated. Default: true. |
Notes
a!chartSeries()
function.Examples
Since record type constants are specific to each system, this example does not evaluate in your Test Rules interface. Use it only as a reference.
Record link that links to the Summary Dashboard of an Entity-Backed Record
1
2
3
4
5
=a!recordLink(
label: "Employee",
recordType: cons!EMPLOYEE_RECORD,
identifier: "5"
)
Record link that links to the Specific Dashboard of a Process-Backed Record
1
2
3
4
5
6
=a!recordLink(
label: "Employee",
recordType: cons!PROCESS_RECORD,
identifier: "268435504",
dashboard: " _KcRefg"
)