Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Eazybi Report: How to get a summary for row dimension?

Christian Michael Arizala August 25, 2015

Hi,

Good afternoon, I need your help in the report. I need to get the summary on the report without the issue keys for example, our summary look like this "TCM-187 / TCM-191 Building permit - Colored Picture of Establishment (front showing left & right side, Inside) (15Jun2015)" and we want to have a new summary like this "Building permit - Colored Picture of Establishment (front showing left & right side, Inside) (15Jun2015)" and another summary like this "Building permit - Colored Picture of Establishment (front showing left & right side, Inside)" without the date at the end. All Subtask should look like the new summary. We want to use the new summary as a row dimension in our report. Hope you could help.


Thank you very much

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

Post a new question

1 vote
JānisJ September 7, 2015

Hi, Christian,

To solve the problem, you need to create two new Issue dimension.

These are the steps how to do it:

1. Describe new JavaScript calculated custom fields in Advanced settings page
[jira.customfield_summary_wo_keys]
name = "Issue II"
data_type = "string"
dimension = true

[jira.customfield_summary_wo_keys_and_date]
name = "Issue III"
data_type = "string"
dimension = true

 advanced_settings.png

2. Write custom JavaScript
issue.fields.customfield_summary_wo_keys = issue.fields.summary;
issue.fields.customfield_summary_wo_keys_and_date = issue.fields.summary.replace(/\(\d\d...\d\d\d\d\)$/, '');

javascript.png


3. Import as dimensions

 as_dimensions.png

Differences between default Issue dimension, new dimensions do not have Project level and Sub-task hierarchy.

TAGS
AUG Leaders

Atlassian Community Events