Print Stream, Change Set and Baseline
![](http://jazz.net/_images/myphoto/94527d8b3490cd59311677d3dce86666.jpg)
We are currently building a report template in Rational Publishing Engine (RPE)/ PUB Studio and having problems to extract what type of configuration a module is printed from (this is valid in both /rm and /qm). When printing the default variable _coverConfigurationType it says “Local Configuration” when printing the module from both main stream and change set. Tried all default variables in RPE/ PUB. Is there any variable that defines the configuration such as stream, baseline and change set? Or can it be found somewhere in a REST API and add an additional schema?
Version of setup :
RPE/ PUB: 7.0.2 SR1 iFix015
Doors NG: 7.0.2 SR1 iFix015
One answer
![](http://jazz.net/_images/myphoto/94527d8b3490cd59311677d3dce86666.jpg)
The Configuration/URI content contains key work that you could parse and use to figure out if it is a steam or changeset.
Examples:
Stream
<ds:Configuration>
<ds:Title>JKE Banking - Requirements Initial Stream</ds:Title>
<ds:URI>https://expert-labs-elm.ibm.com/rm/cm/stream/_zk0FQFR-Ee2EMemfeOPt6A</ds:URI>
<ds:Description/>
<ds:Type>Local Configuration</ds:Type>
</ds:Configuration>
ChangeSet
<ds:Configuration>
<ds:Title>xxx</ds:Title>
<ds:URI>https://expert-labs-elm.ibm.com/rm/cm/changeset/_opPkMGGUEe-Zk9wutKprqA</ds:URI>
<ds:Description/>
<ds:Type>Local Configuration</ds:Type>
</ds:Configuration>
Baseline
<ds:Configuration>
<ds:Title>Test Baseline</ds:Title>
<ds:URI>https://expert-labs-elm.ibm.com/rm/cm/baseline/_9SA_AGGUEe-Zk9wutKprqA</ds:URI>
<ds:Description/>
<ds:Type>Baseline</ds:Type>
</ds:Configuration>