I've build up a hierarchical structure of all my work items with excel - all my work items are now organized in multiple levels.

User Story 1

|-- Task 1

| -- -- Sub Task 1

| -- -- -- Bug 1

| -- -- Sub Task 2

| -- -- -- Bug 2

| -- -- -- Sub Sub Task 3

| -- -- -- -- Bug 4

...

But how can I access all items under a certain work item (e.g., "All under Task 1") and visualize the results in a somehow hierarchical way?

Is this possible with TFS 2010 and VST 2010? Or do I need some third-party tools to get e.g., "All my Bugs for Sub Task 2" or "All Tasks for User Story 1"?

Thank you Konrad

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

In general you need to construct Work Item Queries in VS that have "Type of Query" equal to "Tree of Work Items".

To obtain a list of Bugs for Sub Task 2:
New Query of type "Tree of work items" with Work Item = Sub Task 2 & linked work items Type = Bug

To obtain a list of Tasks under UStory 1:
New Query of type "Tree of work items" with Work Item = User Story 1 & linked work items Type = Task

For an external tool: See here for a nice codeplex-solution that generates DGML - trees of Work Items.

link|improve this answer
1  
Thank you - was exactly what I'm looking for :-) – Konrad Sep 29 '11 at 13:48
Where is the query type shown? – Kenny Evitt Apr 2 at 20:07
@Kenny: If you have the Query opened in VS and select "Edit Query", the Query editor will open up. In here there will be a "Type of Query" combobox with three available options: (1) Flat (default), (2) WIs and Direct links & (3) Tree of WIs – pantelif Apr 3 at 11:07
@pantelif – the problem for me is that the relevant TFS server is not running TFS version 2010; the new query types are only available in that version (and presumably later versions). – Kenny Evitt Apr 4 at 16:23
feedback

I have 3 level hierarchial structure -> Task1 | -> subtask1 | -> bug1 -> bug2 Is there any way that I can have a query to see what bugs are raised for Task1? I know we can "Tree of Work Items" type query to see subtasks for task and bugs for subtask. But want both in same query. Is there a way VSTS supports multi level queries?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.