The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi,
I'm running the latest JSD with Scriptrunner 6.7.0, and I have a simple portal like this:
I'm trying to retrieve the value from a Database Picker field called "Add Roles" in a post function set to trigger when the issue is resolved.
I have the following code, in the post function, to print the value of the field:
def customFieldManager = ComponentAccessor.getCustomFieldManager()
log.debug("Roles: ${issue.getCustomFieldValue(customFieldManager.getCustomFieldObjectsByName("Add Roles")[0])}")
But when the post function runs, it always prints
Roles: null
despite the field is not empty.
However, when I try to do the same in Script Console, for example,
// Use the same issue
def issueKey = "PAP-39"
def issueManager = ComponentAccessor.getIssueManager()
def issue = issueManager.getIssueObject(issueKey)
log.debug("Roles: ${issue.getCustomFieldValue(customFieldManager.getCustomFieldObjectsByName("Add Roles")[0])}")
It successfully prints:
Roles: [8, 9] // The options I selected in the Database Picker
as expected.
Why does the same piece of code not work in post function, but in Script Console? I can confirm that the field is not hidden or read-only, and printing other fields in the post function using the same syntax always works.
Found the answer here right after posting this...
It appears that I need to set the post function to be processed AFTER the issue is created and re-indexed, etc.
Hope this helps.
Hello everyone, Hope everyone is safe! A few months ago we posted an article sharing all the new articles and documentation that we, the AMER Jira Service Management team created. As mentioned ...
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.