The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Assignee value based on a custom field calue

sudhakar
March 9, 2014

Hi ,

Facing issue when executing follwoing script with help of Script Runner plug-in. Any help woulb be appreciated.

Error

javax.script.ScriptException: groovy.lang.MissingPropertyException: No such property: issue for class:

Script:

import com.atlassian.jira.ComponentManager;
import com.atlassian.jira.issue.CustomFieldManager;
import com.atlassian.jira.issue.IssueManager;
import com.atlassian.jira.issue.ModifiedValue;
import com.atlassian.jira.issue.MutableIssue;
import com.atlassian.jira.issue.fields.CustomField;
import com.atlassian.jira.issue.util.DefaultIssueChangeHolder;
import com.atlassian.jira.issue.util.IssueChangeHolder;

ComponentManager componentManager = ComponentManager.getInstance();
CustomFieldManager customFieldManager = componentManager.getCustomFieldManager();
IssueManager issueManager = componentManager.getIssueManager();
CustomField srcField = customFieldManager.getCustomFieldObjects(issue).find {it.name == "fieldname"};

cfwt = issue.getCustomFieldValue(srcField);
if (cfwt == "cond1"){
issue.setAssignee(ComponentManager.getInstance().getUserUtil().getUser('user1'));
}

else if (cfwt == "cond2"){
issue.setAssignee(ComponentManager.getInstance().getUserUtil().getUser('user2'));
}
else if (cfwt == "cond3"){
issue.setAssignee(ComponentManager.getInstance().getUserUtil().getUser('user13'));
}

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Timothy
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 Champions.
April 2, 2014

Where did you instanciate "issue"? That is the meaning of the error.