It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
Hello
I am trying to create custom listener using script runner.
My target is update custom field when issue created
Custom field is drop-down list with values: Yes and No
I have to set this field to "Yes"
Here is my code, it was passed, "no errors found". Also I see that code was executed successfully, however trying to create new issue, custom field was not updated.
import com.atlassian.jira.component.ComponentAccessor import com.atlassian.jira.issue.fields.CustomField; import com.atlassian.jira.issue.MutableIssue; import com.atlassian.jira.issue.ModifiedValue import com.atlassian.jira.ComponentManager import com.atlassian.jira.issue.customfields.manager.OptionsManager def initialIssue=event.issue MutableIssue issueToUpdate = (MutableIssue) initialIssue; def customFieldManager = ComponentAccessor.getCustomFieldManager() def myfield = customFieldManager.getCustomFieldObjectByName("Field Name") def fieldConfig = myfield.getRelevantConfig(initialIssue) def optionsManager = ComponentManager.getComponentInstanceOfType(OptionsManager.class) def optionYes = optionsManager.getOptions(fieldConfig).find {it.value == "Yes"} issueToUpdate.setCustomFieldValue(myfield, optionYes); log.info(initialIssue); log.info(issueToUpdate); log.info(myfield); log.info(optionYes);
I tried to write logs but I don't see any log entries.
Could you help me to understand, what is wrong?
Thank you in advance
Fyodor
Hello Boris
Thanks for advice.
I found solution here: https://answers.atlassian.com/questions/37031086
Custom field could be updated using issueToUpdate.setCustomFieldValue
and
issueManager.updateIssue
commands.
Fyodor
This community is celebrating its one-year anniversary and Atlassian co-founder Mike Cannon-Brookes has all the feels.
Read moreHey Atlassian Community! Today we are launching a bunch of customer stories about the amazing work teams, like Dropbox and Twilio, are doing with Jira. You can check out the stories here. The thi...
Connect with like-minded Atlassian users at free events near you!
Find a groupConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no AUG chapters near you at the moment.
Start an AUGYou're one step closer to meeting fellow Atlassian users at your local meet up. Learn more about AUGs
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.