How do you figure out what the section id & extensionDisplayName of existing section?
![]()
I have created a new section for Test Case, how do I find what the section ID and extensionDisplayName is for newly created sections?
As an example following is a pre-defined section of Test Case in RQM.
the RQM section provided by test case:
Notes
id: com.ibm.rqm.planning.editor.section.testCaseNotes extensionDisplayName: RQM-KEY-TC-NOTES-TITLE
How does on find out for user created sections? Thank you.
|
Accepted answer
One other answer
![]()
Using following in configuration file for importing.
//testcase.Section("myns:com.ibm.rqm.planning.editor.section.testCaseAcceptanceCriteria", "RQM-KEY-TC-ACCEPT-CRITERIA-TITLE")=C
//Section Foobar added through UI - Why does it create a new section when it exists
//testcase.Section("myns:com.ibm.rqm.planning.editor.section.foobar", "RQM-KEY-TC-FOOBAR-TITLE")=Q
again how does one determine section ID and extensionDisplayName..
|