Getting the outline following text using RQMWordImporter 5.0.2
![](http://jazz.net/_images/myphoto/fe89a701bc81a3d8186847244934836d.jpg)
I have the following Doc file:
1. Introduction
Text text text text text text text
1.1. Document Objective
Text text text text text text text
1.2. System Description
Text text text text text text text
and I have the following configuration file:
testplan.DOCStart="1."
testplan.Section("myns:com.ibm.rqm.planning.editor.section.planBusinessObjectives", "RQM-KEY-TP-BUSS-OBJ-TITLE")=List("1.*.,[1,10]")
testplan.dc:description=List("1.2.,[1,10]")
When I import the doc content to RQM, it creates a test plan with:
1- the Business Objective section containing the outline 1.1 and its following text;
2- and the test plan description field containing only the outline "System Description" with no following text.
Question:
1 - How to import the following text from the outline discarding the outline itself avoiding redundancy like having the "Business Objective" section containing a title "business objectives" besides additional text in its content where only the additional text is important?
2 - How to import the outline and its following text when we use exact outline references like "1.2." in the example above?
One answer
![](http://jazz.net/_images/myphoto/fe89a701bc81a3d8186847244934836d.jpg)
Can you try below syntax and see if that works for you
testplan.dc:description=List("*.2,[1,10]")
Comments
![](http://jazz.net/_images/myphoto/ec557e02a805041f740ccbc7951215c5.jpg)
1 - How to import the following text from the outline discarding the outline itself avoiding redundancy like having the "Business Objective" section containing a title "business objectives" besides additional text in its content where only the additional text is important?
- As such there is no straight forward way to avoid the outline text. Probably you can just leave that line empty like below and see if that works
1. Introduction
Text text text text text text text
1.1.
Text text text text text text text
1.2.
Text text text text text text text
![](http://jazz.net/_images/myphoto/fe89a701bc81a3d8186847244934836d.jpg)
Hi, Reshma, thanks for your answer.
In this little example with only one outline and its subitems it worked!
But, as I'm trying to import just one test plan from a whole MS Word document to rqm, can I indicate something like: outline 2.2 corresponds to Test Data section, outline 4.3 corresponds to Test Objectives section, for example?
If I indicate List("2.*,[1,10]") it worked only for the first occurrence, say 2.1. I didn't find out how to specify 2.2, 4.3, etc.
Is it possible?
![](http://jazz.net/_images/myphoto/fe89a701bc81a3d8186847244934836d.jpg)
Hi, all
Could someone help me on this?