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_
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
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