You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I have a custom field (user picker) containing a user name.
Tester: "userA"
I'd like to add a scriptrunner post function that will update current reporter into the "userA" as the value of the custom field Tester.
Could anyone help me with the script?
Hi Thu,
Try a custom script post-function like
import com.atlassian.jira.component.ComponentAccessor import com.atlassian.jira.issue.MutableIssue import com.atlassian.jira.user.ApplicationUser def issue = issue as MutableIssue def cf = ComponentAccessor.customFieldManager.getCustomFieldObjectByName("UserPicker") def cfValue = issue.getCustomFieldValue(cf) as ApplicationUser if (cfValue) { issue.setReporter(cfValue) } else { log.debug "Did not update the reporter because value of UserPicker field was null" }
Please let me know if this does the trick.
regards, Thanos
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This script is similar to what I want to do, except I want to set the reporter to a specific user depending if the custom field value equals 'Support'. Here is what I have:
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.MutableIssue
import com.atlassian.jira.user.ApplicationUser
def issue = issue as MutableIssue
def cf = ComponentAccessor.customFieldManager.getCustomFieldObjectByName("Origin")
def cfValue = issue.getCustomFieldValue(cf)
if (cfValue == 'Support') {
issue.setReporter('sthomson@ivansinsurance.com')
}
else {
log.debug "Did not update the reporter because custom field value was null"
}
However, I get the following error on the "setReporter()" line:
com.atlassian.jira.issue.MutableIssue#setReporter(java.lang.String). Please check if the declared type is right and if the method exists.
Any help would be greatly appreciated!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
*Additional Info*
The script will run, but it is not logging the string, nor is it setting the reporter.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.