How to modify the Testcases,Testscripts and TCER Names at once for entire records?
There is a small change has to be made in the name field of Testcases ,Testscripts and TCER .
is there way to modify in RQM it is having more than 300 records and its very difficult to manually modify each and every testcases individually.
for example :
Sample_PF001_OK_01
Sample_PF001_OK_02
Sample_PF001_OK_03
Sample_PF001_OK_04
---------"------------"---------
in the above testcase names PF001 has to modified into PF005
One answer
It may not be possible via RQM Web UI. You could think of writing a small utility to achieve this by virtue of REST API. See following links -
https://jazz.net/wiki/bin/view/Main/RqmApi
The main function of utility would be -
- Get the Test Artifacts.
- Change the name of test artifacts by replacing PF001 to PF005 in the XML obtained via GET call.
- PUT the updated XML of Test Artifacts back to RQM server.
Thanks,
Abhishek