Possibility to show plan items affected by active defects
![]()
In the RTC (3.0.1) eclipse client I defined a simple query to show all plan items that are affected by at least a defect. This query return all plans items affected by a defect independently by the defect status.
I would create a query to show all plan items affected by active (not resolved) defects and possibly filter by severity also. Is it possible? Thanks |
2 answers
![]()
Joseph's query is doing almost the right thing for the first part of your question. Just add another condition for "Type" and check "Plan Item" so that your query reads:
[Type is "Plan Item" AND Status is "Unresolved" AND Affected by Defect "exists"]
We currently do not support reasoning about attributes of linked work items for that link type. I opened an enhancement to track this request Work Item Queries: Support reasoning about attributes of linked work items for CLM link types (246420). Just FYI, to see what's currently possible in RTC I recommend the article Advanced User's Guide to Querying Work Items in Rational Team Concert. In particular the section "Link Queries" should be of interest.
Comments Hi Jan,
I used the Type = Plan Item in my query but this doesn't solve the problem, I mean it returns un-resolved plan items are affected by defect(s).
I need to query plan items (any status) affected by active defects.
The problem is what you did specified in the enhancement request, RTC doesn't support reasoning about attributes of linked work items.
|