How can I create a view which shows results for requirements/defects across multiple test events in Jazz?
Hello, I am using CLM suite 6.0.6.
Accepted answer
Hi Timothy,
Comments
The one caveat I forgot to mention is that this should be exportable. Unfortunately, JRS reports do get close to what I'd like but since sorts aren't supported in jrs exports, the data is repeated to the point where cleaning up the data is more work than just manually putting the data into the report template.
Report builder will let you get rid of the repeated data by using LISTAGG for SQL or GROUP_CONCAT for Sparql. Here is an article that describes the process:
The JRS report is based off of LQE which uses Sparql so I have to use the group_concat(). The data that was being repeated was test case title, test script title, and qm test result verdict, over each requirement, therefore I need to perform the group_concat on the requirement titles that are causing all of the data to repeat. I performed a simple concat:
For anyone curious on the resolution, adding distinct to the GROUP_CONCAT corrected the issue. The sparql command that worked for me:
Will let you specify a separator
Rafik,