Rally Software

 View Only
  • 1.  Dependency queries

    Posted 21 days ago

    I'm trying to configure an app on a dashboard to show me the dependencies between two delivery streams without having to click on the dependency number that opens a new window.  And, I need to query on the predecessor and successor project IDs.  Ultimate goal is to have a list of features from one delivery stream and show the dependent features from another delivery stream.  What is the query for Predecessor Project Id?



  • 2.  RE: Dependency queries

    Broadcom Employee
    Posted 21 days ago

    @Derwin Roland the query:  (Predecessors.Project.ObjectID = <project oid>) or (Predecessors.Project.Name != "Another Project Name") would return features with predecessors in (or not in) a specific project.  

    In both of the instances above, you'll need to make sure that the app or widget itself is scoped appropriately so that it can access those items outside of the current project scope.  Also, the downside to this is that you still may not be able to see the predecessor/successor relationship in the list.        

    If you are using Custom Views,  check out the Cross Team Dependencies widget which will show all predecessors and successors with dependencies related to the project in scope.  



    ------------------------------
    Kristy Corkan
    Rally Product
    ------------------------------



  • 3.  RE: Dependency queries

    Posted 20 days ago

    Thank you Kristy!  This helped a lot.