Rally Software

  • 1.  How can I view history of each iteration uncompleted work?

    Posted Jun 21, 2018 04:27 AM

    When iteration ends and not all work was completed, a team can move the uncomplete work to next sprint and then Rally reflects that the previous sprint was 100% completed. I want to see the data regarding US/DE that was planned and the actual history of iteration.



  • 2.  Re: How can I view history of each iteration uncompleted work?

    Posted Jun 21, 2018 09:52 AM

    gmarelly, you can use the IterationCumulativeFlowData object from the Web services API (https://us1.rallydev.com/slm/doc/webservice/ ) to see this information.  You won't see the specific stories, but instead the cumulative flow data reflects the total stories and points in the iteration over the course of the iteration, so you would see a drop in CardEstimateTotal or CardCount on the last day. 

     

    If they are moving stories after the iteration is completed, then you might instead need to use the lookback API (https://rally1.rallydev.com/analytics/doc/ ) to do a query on if stories were moved.  

     

    Finally, you could also parse the revision history of the Iteration objects using the RevisionHistory and Revision WSAPI objects to determine what was moved for the iteration.  Here is an example of an application that parses revision history of the Iteration:  GitHub - RallyTechServices/iteration-scope-change-by-project: Iteration Scope Change app refactored with SDK 2.0 and an … 

     

    kristy