Sum original estimates under parent
Return the sum of the original estimates of the work items under the epic's parent in hours only in the epic's parent view.
Configuration
To use the Sum original estimates under parent template, simply select it from the template grid. Filter by KPI to find it faster.
Parameters
This template does not require any additional parameter configuration.
Expert mode
If you switch to Expert mode you can see the Smart field in the Expression Parser. You can now tweak the expression to create a custom smart field based on this template.
Expression
General expression:
%{%{issue.issueType} = "Initiative" ? sum(append(fieldValue({issue.originalEstimate}, union(issuesFromJQL("issuekey in portfolioChildIssuesOf("+%{issue.key}+")"), issuesUnderEpic(issuesFromJQL("issuekey in portfolioChildIssuesOf("+ %{issue.key} +")")))), [0] )) / 60 : null}
โInitiativeโ is a sample name for the parentโs work type. Replace it with a custom one if needed.
Used parser functions
The links lead to the JWTC documentation because the parser functions are shared functionalities.