Function: a!reportLink()
Defines a link to a report. Links can be used in charts, grids, hierarchy browsers, images, link fields, milestones, pickers, and rich text.
See also: Report Type, Task Report Type, Link
Parameters
Name | Keyword | Type | Description |
---|---|---|---|
Label | label | Text | Text associated with this link. |
Report | report | Report or Task Report | The linked report or task report. |
Visibility | showWhen | Boolean | Determines whether the link is displayed in the component. When set to false, the link is hidden and is not evaluated. Default: true. |
Examples
Since report constants are specific to each system, this example does not evaluate in your Test Rules interface. Use it only as a reference.
Basic Report Link
1
2
3
4
5
6
7
8
=linkField(
links: {
a!reportLink(
label: "Department Summary",
report: cons!DEPARTMENT_SUMMARY_REPORT
)
}
)
On This Page