It's all about the answers!

Ask a question

can Thick client be helpful in getting the IDs of the custom sections that are created from inside RQM Test Case Template?


Sarvendra Kumar (1922426) | asked May 31 '13, 7:54 a.m.

I have created few new Test Case Sections e.g. custom 1, custom 2 etc. from inside the "Manage Artifact Template" for a Test Case.

I need to get the IDs of those sections, can Thick Client be helpful ?

One answer



permanent link
Ara Masrof (3.2k15) | answered May 31 '13, 8:18 a.m.
JAZZ DEVELOPER
 Sarvendra
You get that information via the REST API
You can get the feed to all of the templates by using this URL in the browser

https://clm401:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/CLM_LCP+%28Quality+Management%29/template

In this example, the public URI is 'clm401:9443' and the QM project is 'CLM_LCP (Quality Management)'

This will give you a list of all your templates; find the one being used for Test Cases, right click and select 'Copy Link Location'. Use this URI in Poster or some other HTTP client and perform a GET; it will return the XML of the artifact

Once you obtain the response back from Poster you should see the custom section listed in the XML


<ns2:section name="RQM-KEY-TC-SCRIPTS-TITLE" id="com.ibm.rqm.planning.editor.section.testCaseScripts" description="RQM-KEY-TC-SCRIPTS-DESC"/><ns2:section name="RQM-KEY-TC-SUMMARY-TITLE" id="com.ibm.rqm.planning.editor.section.testCaseSummary" description="RQM-KEY-TC-SUMMARY-DESC"/><ns2:section name="RQM-KEY-TC-NOTES-TITLE" id="com.ibm.rqm.planning.editor.section.testCaseNotes" description="RQM-KEY-TC-NOTES-DESC"/><ns2:section name="MyCustomSection" id="com.ibm.rqm.planning.editor.section.dynamicSection_1368535206438" description="CustomSection"/></ns2:sections></ns2:template>

Your answer


Register or to post your answer.


Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.