User Record Link

Function: a!userRecordLink()

Defines a link to a user record.

See also: Configure User Record in Tempo, Link, Read-Only Grid, Images, Tag Items

Parameters

Name Keyword Type Description
Label label Text Text displayed as the link name the user clicks on.
User user User The User whose record is linked.
View view Text The URL stub of the view 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

Examples

To make the following expression valid, replace the "label" and "user" field values with a valid user in your environment.

User Record link that links to the Summary view of John Doe's User Record

1
2
3
4
5
=a!userRecordLink(
  label: "John Doe",
  user: "john.doe",
  view: "summary"
)

The following patterns include usage of the User Record Link.

  • User List Pattern (Looping): The user list pattern retrieves all the users in a specified group and displays them in a single column.
Open in Github Built: Wed, Aug 17, 2022 (01:05:05 PM)

On This Page

FEEDBACK