You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 8 Next »

This function returns the full name for a given user name.


Syntax
userFullName(userName) #Output: Text
Examples
Parser expressionDescription
userFullName(%{system.currentUser})
This example returns the full name the current user, e.g.:
Bob Smith
Additional information

Parameters used in this function

ParameterInput (data type)Description
userName

TEXT

Text containing a valid user name.
Output

This function returns a TEXT


Variant for multiple users.

Syntax
userFullName(userList) #Output: Text list
Examples
Parser expressionDescription
toString(userFullName(%{issue.watcher}))
This example returns the full names of all watchers.

To achieve this the following functions are used

toString(userFullName(["b.smith", "d.jones"]))

This example returns the full names of all two users, e.g.:

Bob Smith, Dave Jones

To achieve this the following functions are used

Additional information

Parameters used in this function

ParameterInput (data type)Description
userList

TEXT LIST

Any valid text list.
Output

This function returns a TEXT LIST