You're enrolled in our new beta rewards program. Join our group to get the inside scoop and share your feedback.
Join groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
Hi
we are creating a workflow and during each transition custom field should be updated to the relevant status
eg: if workflow status moved from new to Ready to Assesment then custom field should be updated to " In Assesment"
I am trying for issue type = "Task" wit the below code and it's failing
import com.atlassian.jira.component.ComponentAccessor
def cfSelect = ComponentAccessor.customFieldManager.getCustomFieldObjectByName("Favourite Fruit")
def cfConfig = selectCf.getRelevantConfig(issue)
def value = ComponentAccessor.optionsManager.getOptions(cfConfig)?.find {
it.toString() == 'Lemons'
}
issue.setCustomFieldValue(cfSelect, value)
Can you please help on this
Ji Vijaya,
I cannot see something wrong in your code, apart from the
def cfConfig = selectCf.getRelevantConfig(issue)
which should be
def cfConfig = cfSelect.getRelevantConfig(issue)
if your post function is before the store in the database step (or something similar) and of course an option with name Lemons is valid, then this should just work.
regards, Thanos
Hi,
I had executed the above and script and it fails. Please see below logs
The following log information was produced by this execution. Use statements like:log.info("...") to record logging information.
2016-12-22 13:59:20,023 ERROR [workflow.ScriptWorkflowFunction]: ************************************************************************************* 2016-12-22 13:59:20,023 ERROR [workflow.ScriptWorkflowFunction]: Script function failed on issue: PT-40, actionId: 21, file: <inline script> java.lang.NullPointerException: Cannot invoke method getRelevantConfig() on null object at Script262.run(Script262.groovy:11)
Please see the pic the flow I am using. Please let me know whether it's right or not
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
import com.atlassian.jira.component.ComponentAccessor
def cfSelect = ComponentAccessor.customFieldManager.getCustomFieldObjectByName("My CF")
def cfConfig = cfSelect.getRelevantConfig(issue)
def value = ComponentAccessor.optionsManager.getOptions(cfConfig)?.find {
it.toString() == 'The Value I want to set'
}
issue.setCustomFieldValue(cfSelect, value)
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.
Hey Vijaya,
Try to move your post function right before the Update change history ... step (3)
regards, Thanos
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
any update by @Vijaya on this ? I am facing similar errors. Is her problem solved?
I am executing the script in post-function of Create Issue.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Nevermind, I figured it out.
The Custom Field I was targeting wasn't getting retrieved due to incorrect Custom Field name.
I bet same issue would be for Vijaya!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Atlassian's marketplace partners have had a very productive start to 2021! Since our last roundup, our developer community has added over 160 new cloud apps to the Atlassian Marketplace to help you...
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.