Bulk add development items to many test cases at once
Accepted answer
You should be able to do that by using Java API following this post:
https://jazz.net/forum/questions/80904/how-can-i-use-the-java-api-to-link-rqm-test-caseresults-to-rtc-work-items
You can also achieve the same by using OSLC API:
https://jazz.net/forum/questions/86731/can-i-use-rqm-rest-api-to-link-an-rtc-story-to-a-test-case
The general approach for this one is:
1)
create a test case in the RQM UI with the specific link and GET the XML for the test case:
Method: GET
URL: https://<host>:<port>/<context root>/service/com.ibm.rqm.integration.service.IIntegrationService/resources/<project area alias>/testcase/urn:com.ibm.rqm:testcase:<web ID>?abbreviate=false
Header: Accept=application/xml
2) use PUT command to update the test case with the specific link following the similar format in the GET xml:
(https://jazz.net/wiki/bin/view/Main/RqmApi)
https://jazz.net/forum/questions/80904/how-can-i-use-the-java-api-to-link-rqm-test-caseresults-to-rtc-work-items
You can also achieve the same by using OSLC API:
https://jazz.net/forum/questions/86731/can-i-use-rqm-rest-api-to-link-an-rtc-story-to-a-test-case
The general approach for this one is:
1)
create a test case in the RQM UI with the specific link and GET the XML for the test case:
Method: GET
URL: https://<host>:<port>/<context root>/service/com.ibm.rqm.integration.service.IIntegrationService/resources/<project area alias>/testcase/urn:com.ibm.rqm:testcase:<web ID>?abbreviate=false
Header: Accept=application/xml
2) use PUT command to update the test case with the specific link following the similar format in the GET xml:
(https://jazz.net/wiki/bin/view/Main/RqmApi)