Linked Requirements information in Report

Tuesday, November 5, 2019
Avatar

Hi, 

I want to create a report with a table 'Linked Requirements', as in the Report 'Requirements Detailed'.
Is it possible to include the Description of the Linked Requirements in the table? I've tried <xsl:value-of select="ArtifactDescription" disable-output-escaping="yes"/> but it doesn't work.

Regards, 

Christine

3 Replies
Wednesday, November 13, 2019
Avatar
re: Christine Tuesday, November 5, 2019

Can someone help me there?

Thursday, February 13, 2020
Avatar
re: Christine Wednesday, November 13, 2019

I am also trying to get around the same problem.  Did you get an answer for this issue?

Friday, July 17, 2020
Avatar
re: rebecca.macleod Thursday, February 13, 2020

Something like this?

<td>              

           <xsl:if test="Requirements/ArtifactLink">                

                   <xsl:for-each select="Requirements/ArtifactLink">                   

                             <xsl:if test="position() > 1">, <br /></xsl:if>                   

                                       <xsl:value-of select="ArtifactName"/>                

                     </xsl:for-each>              

                  </xsl:if>            

</td>

 

Spira Helps You Deliver Quality Software, Faster and With Lower Risk

And if you have any questions, please email or call us at +1 (202) 558-6885

 

Statistics
  • Started: Tuesday, November 5, 2019
  • Last Reply: Friday, July 17, 2020
  • Replies: 3
  • Views: 2974