Create Epic Link Programatically

sahan kanuwana August 28, 2017

After some research, found that we can create the Epic Link custom field using below code.

MutableIssue epicIssue = ComponentAccessor.getIssueManager().getIssueObject("Epic_Key");
jiraIssue.setCustomFieldValue(customFieldObject, epicIssue);

The program runs good. However it doesn't show up my Epic Link on Issue Screen. 

When I ask "Where is my field" it says, the Epic Link value is not set, therefore it is not visible. 

Any idea on this? How can I make my Epic Link visible when I create the Epic Link programatically?

Thanks in advance!

1 answer

0 votes
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
August 28, 2017

Your code isn't setting the value.

Your code snippet isn't complete enough to show us where it might be wrong, and you have not said where it is running.

sahan kanuwana August 30, 2017

Hi Nic, 

Sorry, about that. Here is my code. Please check if you can help on this.

String custFieldValue = "PT-01" //This is my Epic Key
CustomFieldManager cfManager = ComponentAccessor.getCustomFieldManager();
CustomField jiraCustomField = cfMgr.getCustomFieldObjectByName(Constants.EPIC_LINK);
MutableIssue epicIssueObject = ComponentAccessor.getIssueManager().getIssueObject(custFieldValue);

if(epicIssueObject != null) {
newJIRAIssue.setCustomFieldValue(jiraCF, epicIssue);
} else {
log.info("Epic Link " + custFieldValue + " is not available.");
}
newJiraIssue.setCustomFieldValue(jiraCustomField, custFieldValue);

 

I didn't find any other way to set the values. I think you mentioned about "custFieldValue". That was actually a string that contains my Epic Key.

sahan kanuwana August 30, 2017

Where it is running -> I am using Jira Software (Server), not cloud

sahan kanuwana September 3, 2017

Any idea on this?

sahan kanuwana September 6, 2017

Can anyone help on this please?

Suggest an answer

Log in or Sign up to answer