The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hello!
I've been trying to get the team name from the Tempo Team field in a Script Runner Scripted Field, but all I've been able to get is the ID using the following code :
import com.atlassian.jira.component.ComponentAccessor;
def customField = ComponentAccessor.getCustomFieldManager().getCustomFieldObject("customfield_12200");
def value = (String)issue.getCustomFieldValue(customField);
return value;
Does anyone know if there is a way to get the name from the ID or even get the name directly?
Thanks,
JT
I know it's been a while since the question was asked, but since there's no answer until now I'll share what I've been doing to get the Tempo team from an ID (if you have the team you also have the name).
Just paste below code into script console to test it.
import com.onresolve.scriptrunner.parameters.annotation.ShortTextInput
import com.onresolve.scriptrunner.runner.customisers.PluginModule
import com.onresolve.scriptrunner.runner.customisers.WithPlugin
import com.tempoplugin.team.api.TeamManager
@ShortTextInput(label="Team ID", description="Please enter an integer (if no team exists for this ID the script will output null)")
String teamId
@WithPlugin("com.tempoplugin.tempo-teams")
@PluginModule
TeamManager teamManager
// get the according Tempo team...
def team = teamManager.getTeam(teamId as Integer)
// ...and its name
def teamName = team?.name
However, it seems that at least for Jira 8.13.0, Scriptrunner 6.13.1 and Tempo 7.20.1 your code actually returns the team's name (according to the preview function of a scripted field).
This month the spotlight is on AppLiger. We caught up with Pavel Pavlovsky, CEO and Product Manager, to learn how the company started and what fuels the team's creativity. Atlassian:...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.