Sorry, if this already got asked, but I cant find an exact match to my problem.
We already have a dahsboard query active that retrieves the non covered requirements of the type 'user story' in a particular project. This works as intended
Now I have been asked to extend this project to be able to query on the same, but now for a specific release. So I want all user stories, assigned to release M3 (which obviously exists!) that are not covered by a test case. To that effect, I added a reference 'REQ.RQ_TARGET_REL' , as well as the last last line. I have added a dummy requirement to the the requirements database, which is not covered, but is assigned to release M3. Yet, the query comes up empty. What am I missing?
SELECT
REQ.RQ_REQ_NAME /*Requirement.Name*/,
REQ.RQ_REQ_STATUS /*Requirement.Direct Cover Status*/,
REQ.RQ_TARGET_REL,
TPR_NAME
FROM
REQ /*Requirement*/
JOIN REQ_TYPE
ON REQ.RQ_TYPE_ID = REQ_TYPE.TPR_TYPE_ID -- join to get the name of the requirement type e.g "Folder"
WHERE
TPR_NAME = 'User Story' -- Only retrieve requirements of type "User Story"
AND
REQ.RQ_REQ_STATUS /*Requirement.Direct Cover Status*/ = 'Not Covered'
AND
REQ.RQ_TARGET_REL /*Requirement.Target Release*/ = 'M3'
Thanks in advance,
Ronald