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.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.