I need Burn Up and Burn Down report Using Story Point
Hello ,
I am having requirement to create the Burn up and Burn Down chart using the Story Points rather then Remainng hours.
I am trying the stuff from BIRT. can some one let me know how to get the story point column in the fact information?
I am not able to get the Story point column in the Fact Information of DataSet.
Also If possible can some one provide me .rptdesign file for story point remaining ?
I am having requirement to create the Burn up and Burn Down chart using the Story Points rather then Remainng hours.
I am trying the stuff from BIRT. can some one let me know how to get the story point column in the fact information?
I am not able to get the Story point column in the Fact Information of DataSet.
Also If possible can some one provide me .rptdesign file for story point remaining ?
5 answers
you can pick the .prtdesign from your installation :
Its available in the plugin com.ibm.team.examples.reports.common_xx under rtc-commons-update-site site plugins folder.
from my v402 Tomcat Installation, its available in :
C:\IBM\402\JazzTeamServer\server\conf\ccm\sites\rtc-commons-update-site\plugins\com.ibm.team.examples.reports.common_3.1.200.v20121020_1351.jar\
Its available in the plugin com.ibm.team.examples.reports.common_xx under rtc-commons-update-site site plugins folder.
from my v402 Tomcat Installation, its available in :
C:\IBM\402\JazzTeamServer\server\conf\ccm\sites\rtc-commons-update-site\plugins\com.ibm.team.examples.reports.common_3.1.200.v20121020_1351.jar\
Here is the list of out-of-the-box reports: https://jazz.net/wiki/bin/view/Main/ReportsOutOfTheBox20
As mentioned my Guido, have a look at the release burndown. And as mentioned by Dinesh, grab the template in your RTC Eclipse installation directory.
Hope it helps. Thanks.
Hello,
I want to twist the Story Points Remaining report to Story Points Completed, I tried with the script changes[Update in BOLD ITALIC] as :
Also I need to add idle line and Total Story point series.
Please help me on that. I am very new for BIRT and Reporting and I need this urgently.
I want to twist the Story Points Remaining report to Story Points Completed, I tried with the script changes[Update in BOLD ITALIC] as :
var add = true;
if ((startDate != null) && (now.getTime() < startDate.getTime())) {
add = false;
} else if ((adjustedEndDate != null) && (now.getTime() > adjustedEndDate.getTime())) {
add = false;
} else {
add = addLiveData;
}
if (add) {
var point = new Object();
point.timestamp = now;
point.storyPoints = liveOpenStoryPoints;
point.group = "CLOSED_STATES";
storyPoints.push(point);
}Please suggest any other updates required for this as the changes only make the last date line tends to zero.
Also I need to add idle line and Total Story point series.
Please help me on that. I am very new for BIRT and Reporting and I need this urgently.
Comments
Guido Schneider
Jun 14 '13, 4:44 a.m.Relase Burndown/up are based on story points.
Do you need this INSIDE the Sprint?