Status
Tech review

Style guide




Short description

Returns the full name of a given user.

Output

Available since




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



userFullName(userName) #Output: Text



Parser expressionDescription


userFullName(%{system.currentUser})


This example returns the full name the current user, e.g.:
Bob Smith



Parameters used in this function

ParameterInput (data type)Description
userName

Text containing a valid user name.



This function returns a




Variant for multiple users.


userFullName(userList) #Output: Text list



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



Parameters used in this function

ParameterInput (data type)Description
userList

Any valid text list.



This function returns a