Jazz Forum Welcome to the Jazz Community Forum Connect and collaborate with IBM Engineering experts and users

Poblem with BIRT Report for RTC

I need to create a report listing the WorkItems and present the sum of the estimate of children.

My problem:

I have a dataset of LIVE_WORKITEM_CNT table with (WI_ITEMID, WI_ID, SUMMARY, WI_TYPE) and another dataset of the LINKS table with (SOURCE_ITEMID and TARGET_ITEMID).

Crei one Join Dataset between WI_ITEMID and SOURCE_ITEMID, but did not get any results. Probably due because the query record limit .

Any idea how to solve this?

0 votes



3 answers

Permanent link
The trick is to apply filters on both of the data sets, which is not feasible with the LINKS table. You could try the LIVE_SNAPSHOT table com.ibm.team.links.AuditableLink, which at least allows you to filter on type but that won't be enough if the repository is large. Or you could try the LIVE_SNAPSHOT table com.ibm.team.linkClosure.Relation, which extracts ancestors/descendants rather than parents/children but lets you filter on project area, type and more.The alternative is to script it

0 votes

Comments

 It is not possible to use the advanced dataset for the links and use the filter TARGET_ITEMID IN WI_ITEMID?


I found a similar example, but it does not show how to do.


Any suggestion


Permanent link
I assume you have tried target.itemId in WI_ITEMID. If that doesn't work, have you tried creating a simple data set?

0 votes


Permanent link
Both does not work. Background of the problem is:

Must list all Storys of a team, with sum of all children estimates.
Example:
Story 001 | Summary
_____________________ Task 002 | Summary | Estimate
_____________________ Task 003 | Summary | Estimate
___________________________________ΣTaskstimate    

Story 004 | Summary
_____________________ Task 005 | Summary | Estimate
_____________________ Task 006 | Summary | Estimate

___________________________________ΣTaskstimate    
   
                                                  


Option 1:
Retrieving linked items with nested tables. Do not work because each child was in a separate table and therefore it was not possible to make the sum of estimates.

Option 2:
Do Children Dataset Join (Parent Dataset Join Links Dataset).Do not work because jazz query result set is limited
and therefore (Parent Join Links) does not return results.

Workaround idea for Option 2: 
Create Advanced Dataset for Links and use this filter SOURCE_ITEMID IN "PARENT DATASET"

 Its is Possible?


0 votes

Your answer

Register or log in to post your answer.

Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.

Search context
Follow this question

By Email: 

Once you sign in you will be able to subscribe for any updates here.

By RSS:

Answers
Answers and Comments
Question details

Question asked: Nov 09 '15, 6:22 a.m.

Question was seen: 2,051 times

Last updated: Nov 11 '15, 6:57 a.m.

Confirmation Cancel Confirm