Are you in the loop? Keep up with the latest by making sure you're subscribed to Community Announcements. Just click Watch and select Articles.

×
Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

ScriptRunner

Edited

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.
Mar 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
TAGS
AUG Leaders

Atlassian Community Events