Filtering mulitple Testplans in RRDG
I have a metadata configured to a DataSource to pass value during the report runtime in RRDG(RQM). The filter is something like this...
${public}/service/com.ibm.rqm.integration.service.IIntegrationService/resources/${projectAreaUUID}/testplan?fields=feed/entry/content/testplan[title='${userInput}']/*&wildcard=*
This only allows me to select one TestPlan and run the report..I would like to select multiple TestPlan to run the report. Is this supported ? What changes do I need to make ?
Appreciate your help.
${public}/service/com.ibm.rqm.integration.service.IIntegrationService/resources/${projectAreaUUID}/testplan?fields=feed/entry/content/testplan[title='${userInput}']/*&wildcard=*
This only allows me to select one TestPlan and run the report..I would like to select multiple TestPlan to run the report. Is this supported ? What changes do I need to make ?
Appreciate your help.
One answer
${public}/service/com.ibm.rqm.integration.service.IIntegrationService/resources/${projectAreaUUID}/testplan?fields=feed/entry/content/testplan[title='${userInput}']/*&wildcard=* allows you to select the testplan from a filter dialog.
You can use ...fields=feed/entry/content/testplan[title='${v1}' or title='${v2}']/* if you already know how many test plans to be selected...
Or you can use an external variable and provide wildcard value that matches the test plan title.
You can use ...fields=feed/entry/content/testplan[title='${v1}' or title='${v2}']/* if you already know how many test plans to be selected...
Or you can use an external variable and provide wildcard value that matches the test plan title.