ScriptRunner

Kruthika R March 7, 2022

Hi, Is it possible to

  • Translates the user Display Name listed in the Assignee Field (i.e. user1) to the username (ur1)
  • Stores the username (ur1) in the MFC Assignee custom text field

1 answer

1 accepted

0 votes
Answer accepted
Adrien Low [ServiceRocket]
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
March 11, 2022

Hey @Kruthika R ,

It would be great if you could clarify further as to what you are trying to configure (eg. Behaviors, Listeners, Post-functions) and provide any codes that you already have for our review so that we are able to understand your use case better.

With that said, you should generally be able to get all the details you need once you have retrieved the ApplicationUser from the Assignee field.

An example using Behaviors is as below:-

import com.atlassian.jira.component.ComponentAccessor

def userManager = ComponentAccessor.getUserManager()

def assigneeField = getFieldById("assignee")
def description = getFieldById("description")

def assigneeValue = assigneeField.getValue()

def user = userManager.getUserByName(assigneeValue)

def userDisplayName = user.getDisplayName()
def userUsername = user.getUsername()
def userEmailAddress = user.getEmailAddress()

def text = "Display Name: " + userDisplayName.toString() + "\nUsername: " + userUsername.toString() + "\nEmail: " + userEmailAddress.toString()

description.setFormValue(text)

Output as below:-

ss1.png

Hope this helps.

Regards.

Suggest an answer

Log in or Sign up to answer