RQM Report Builder - Current Test Result
Hello,
I would like to create a report of all test results where the current/latest test result is "ERROR".
Within RQM it is possible to browse and filter by column 'Current'
With Report builder I do now know how to define a query.
Is this use case possible with Report Builder?
In case there is no attribute "Current" may be it can be done with a relationship?
thanks and happy new year to all off you, Jörg
2 answers
Hi Jörg Werner,
As of now, there is no option available for the end user to select the "Current" state of the Test Case Result in Report Builder. Please raise it as an enhancement if needed absolutely for your team. Simplest way would be to just provide it as one of the Attribute fields.
Thanks and Regards,
Krupa Gunhalkar
Comments
thanks Krupa!
If there is no direct solution, then may be an "advanced" solution with SQL?
I'm sure that this is possible, but I don't know the syntax.
Select A.* from testcaseresult A
where A.id = (select max(B.id) from testcaseresult B where B.id = A.id)
Hope this shows at least the general idea :-)
Thnaks, Jörg