Add "Project" hierarchy level when using Portfolio hierarchy

I can import my Portfolio hierarchy into EazyBI and it works great. However would like to know if there is a way to include the “Project” level at the top of the Portfolio hierarchy, much like the “Epic”, “Sub-Task”, and default hierarchies include the project level.

Rough example of what I mean:
image

I realize that screenshot might be a little misleading - I don’t want to insert the Portfolio levels into the Epic hierarchy. I just want to put Project at the top of my Portfolio hierarchy, or at least create another Issue hierachy that works that way.

Wouldn’t you know it, I found a solution shortly after posting this.

[jira.customfield_10202] # Use the custom field ID for "Parent Link"
data_type = "string"
check_calculated_value = true
update_from_issue_key = "epic_key"


[[jira.issue_hierarchies]]
name = "Portfolio Project"
all_member_name = "All issues by Initiative"
levels = [
   {name="Project",key_column="project_key"},
   {name="Initiative",key_column="customfield_10202",issue_type="Initiative"},
   {name="Epic",key_column="epic_key"},
   {name="Story",key_column="epic_parent_key"},
   {name="Sub-task",key_column="subtask_key"}
]
1 Like