It's all about the answers!

Ask a question

filtering suiteexecutionrecord in RQM


Özgür Akdemir (465) | asked Dec 13 '19, 4:44 a.m.
Hi all,

I can list all the suite execution records under the relevant project area by configuring RQM Feed data source with the following URI 


https://<server>:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/<project name>/
suiteexecutionrecord?abbreviate=false&calmlinks=true

But I want to achieve two things.

First, listing only those suite execution records whose owner is a specific one. For this purpose I add the fields property to URI as follows:
https://<server>:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/<project name>/
suiteexecutionrecord?abbreviate=false&calmlinks=true&fields=feed/entry/content/suiteexecutionrecord[owner='ozgur.akdemir']

This does NOT work. No result is returned. Actually any other attribute (title, webId ) does NOT work either. 

Second, listing only those suite execution records whose test suite is a specific one. For this purpose I used the following URI:
https://<server>:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/<project name>/
suiteexecutionrecord?abbreviate=false&calmlinks=true&fields=feed/entry/content/suiteexecutionrecord/*|testsuite[@href='https://<server>:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/<project name>/testsuite/urn:com.ibm.rqm:testsuite:180'])

This does NOT work, either.

What is the problem ? 

Özgür Eser Akdemir





 

One answer



permanent link
Subhajit Bhuiya (5972) | answered Dec 16 '19, 11:53 a.m.
JAZZ DEVELOPER
 
These 2 has worked for me

https://<server>:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/<project area>/suiteexecutionrecord?abbreviate=false&calmlinks=true&fields=feed/entry/content/suiteexecutionrecord[owner="qmuser"]

https://<server>:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/<project area>/suiteexecutionrecord?abbreviate=false&calmlinks=true&fields=feed/entry/content/suiteexecutionrecord/*|testsuite[@href='https://<server>:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/<project area>/testsuite/urn:com.ibm.rqm:testsuite:1']

Your answer


Register or to post your answer.