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

Setting CustomField value from another CustomField

Hello to everyone!

I wrote a script that must to change assignee in an issue, but it doesn't work without any error. 

I have "customfield_10300" (Epic Link) and username "jandall". This script runs in postfunctions via ScriptRunner. But when I changing the transition of issue or creates it nothing happens. Script runs but with no changing of assignee.

 

import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.MutableIssue

MutableIssue curIssue = issue

def condField = "customfield_10300"

def target = "assignee"

def cfManager = ComponentAccessor.getCustomFieldManager()
def cfCond = cfManager.getCustomFieldObject(condField)
def selectedVal = cfCond.getValueFromIssue(curIssue)

def cfTarget = cfManager.getCustomFieldObject(target)

if (selectedVal == "TBAS-1") {
curIssue.setCustomFieldValue(cfTarget, "jandall")
} else if (selectedVal == "TBAS-2") {
curIssue.setCustomFieldValue(cfTarget, "mdavis-sd-demo")
}

 

What am I doing wrong?

1 answer

1 accepted

Suggest an answer

Log in or Sign up to answer
1 vote
Answer accepted
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Jan 15, 2018

Assignee is not a custom field, unless you've added a new one called that.  Can you confirm if you mean the standard system assignee, or you have a new custom field called assignee?

Yes, I mean standard system assignee.

Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Jan 15, 2018

Right, so you can probably see why your code does not work - assignee is not a custom field, so you don't use set custom field functions.

Try .setAssignee(<user>) instead.  You'll need a the user to be a user object, not a string

Thanks, it works well!

My final script for issue:

import com.atlassian.jira.ComponentManager;
import com.atlassian.jira.issue.CustomFieldManager;
import com.atlassian.jira.issue.Issue;
import com.atlassian.jira.issue.IssueManager;
import com.atlassian.jira.issue.MutableIssue;
import com.atlassian.jira.issue.comments.CommentManager;
import com.atlassian.jira.issue.fields.CustomField;
import com.atlassian.jira.util.ImportUtils;
import com.atlassian.jira.user.util.UserManager;
import com.atlassian.crowd.embedded.api.User;
import com.atlassian.jira.component.ComponentAccessor;

MutableIssue curIssue = issue;

def issueManager = ComponentAccessor.getIssueManager();
def customFieldManager = ComponentAccessor.getCustomFieldManager();
def cField = customFieldManager.getCustomFieldObject("customfield_10000");
def cFieldValue = issue.getCustomFieldValue(cField);

String epicLink = cFieldValue;
String chs-admindev = "CHS-6";
String chs-design = "CHS-10";
String content = "CHS-28";
String mobilemarketing = "CHS-29";

String user = 'defaultuser';

if (epicLink == chs-admindev) {
user = 'user1';
}

if (epicLink == chs-design) {
user = 'user2';
}

if (epicLink == content) {
user = 'user3';
}

if (epicLink == mobilemarketing) {
user = 'user4';
}

issue.setAssignee(ComponentAccessor.getUserManager().getUserByName(user));
TAGS
AUG Leaders

Atlassian Community Events