Create a default Epic Link using Behavior

Brian Taylor December 11, 2017

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)

1 answer

1 accepted

Suggest an answer

Log in or Sign up to answer
1 vote
Answer accepted
Daniel Yelamos [Adaptavist]
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
December 15, 2017

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

Brian Taylor December 15, 2017
ProgramFld.setFormValue("PRDRPTD-1") worked
Thanks for the help
Daniel Yelamos [Adaptavist]
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
December 17, 2017

Hey Brian. Could you please accept my answer so that other users know that this has been solved?

Cheers!

DYelamos

TAGS
AUG Leaders

Atlassian Community Events