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.
Trying to set a default Epic Link on Create using Scriptrunner Behavior
// Behavior Server Side Script
import com.atlassian.jira.component.ComponentAccessor
if (getActionName() == "Create") {
return // not the initial action, so don't set default values
}
// set a select list value
def ProgramFld = getFieldByName("Epic Link")
def optionsManager = ComponentAccessor.getOptionsManager()
def customFieldManager = ComponentAccessor.getCustomFieldManager()
def customField = customFieldManager.getCustomFieldObject(ProgramFld.getFieldId())
def config = customField.getRelevantConfig(getIssueContext())
def options = optionsManager.getOptions(config)
def optionToSelect = options.find { it.value == "PRDRPTD-1" }
ProgramFld.setFormValue(optionToSelect.optionId)
Hey Brian!
The Epic link is a link, you won't get that through it's options. You might need to set this value to an actual link.
Try this:
ProgramFld.setFormValue("PRDRPTD-1")
Or:
ProgramFld.setFormValue("{YOUR JIRA URL}" + "/browse/PRDRPTD-1")
If this doesn't work let me know and I'll try to get this to work in my local instance.
Cheers!
DYelamos
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey Brian. Could you please accept my answer so that other users know that this has been solved?
Cheers!
DYelamos
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.