Rally Software

 View Only
  • 1.  Reporting the number of times a user story's description has changed

    Posted Jul 22, 2019 02:54 PM
    I've been asked to report on the number of times a user story's acceptance criteria has changed after it's been added to the board as part of a release. We use the Description field for this. I've had little success finding how to do this and the Lookback API does not include this field. Any suggestions?


  • 2.  RE: Reporting the number of times a user story's description has changed
    Best Answer

    Broadcom Employee
    Posted Jul 23, 2019 06:08 PM
    Hi Eric,

    There really isn't a great way to handle this.  As you are aware, LBAPI doesn't store data from full text fields like description and notes.

    So that only leaves WSAPI, but the way that revisions are stored doesn't lend itself to querying in a gentle manner.  The structure is as follows:
    • HierarchicalRequirement
      • RevisionHistory
        • Revisions
    So you have to get the RevisionHistory object and then subsequently query its Revisions collection.  Since WSAPI isn't stateful, this can't be accomplished in a single query, so you really have to drop out to a language like Python or Java to accomplish this.


  • 3.  RE: Reporting the number of times a user story's description has changed

    Posted Jul 24, 2019 10:10 AM
    Thanks for the info, David.