How to display the parent issue key above the Epic in the Story-level issues
Platform Notice: Data Center Only - This article only applies to Atlassian products on the Data Center platform.
Note that this KB was created for the Data Center version of the product. Data Center KBs for non-Data-Center-specific features may also work for Server versions of the product, however they have not been tested. Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.
*Except Fisheye and Crucible
Summary
How to display the parent issue key above the Epic in the Story-level issues. The current Jira limitation only displays up to the Epic level.
For example, the user is not able to see the parent of the EPIC HGG-27

Environment
There is an issue level, Initiative, configured above the Epic in the issue hierarchy: Initiative > Epic > Story > SubtasksDiagnosis
Cause
Solution
Please create a new custom field- InitiativeDisplay( This field will contain the issuekey of the Initiative)
Make sure the check box on the project screen that you want this field to be displayed
For example on the following screenshot of Task HGG-6 >Epic(HGG-3) > Initiatives (HGG-14).
In the normal view of the Task, the parent field available only shows the Epic of HGG-3


Setting up the Automation rules
The extra field -InitiiativeDisplay will update the Epic's parent value into the Task ticket view which can be achieved by using the Automation rules as setup in the following configuration
This rule will update the children of the Epic(tasks, story), when the parent of the Epic(Initiatives) is updated.
You would need to get the ID of your custom field by going to the Customer field >Edit details(placing a mouse on this )
You can find the custom field id at the bottom of the left screen.
Please this value in the automation code under the Additional fields tab.
1
2
3
4
5
6
{
"fields": {
"customfield_xxxxx":"{{epic.parent.summary}}."
}
}
To add the new field to your Card Layout
Go to the Project's Backlog or Active Sprints and Click on the ... to Configure Board
Go to Card Layout and Add the Custom Field "InitiativeDisplay"

3. Once it is added, you will be able to see the Initiative info on the card

Was this helpful?