Export Multiple Comments from Incidents from spira to xls

Monday, November 14, 2016
Avatar
Please  help  me  guys , this is urgent 

I need to  export existing incidents to xls – which is  OK , however some spira  have multiple comments and export just  gives last comment.

 

Any idea  how we can  export multiple comments associated with individual issue ?

1 Replies
Monday, November 14, 2016
Avatar
re: mithai420 Monday, November 14, 2016
Hi Ajay

You need to modify the report XSLT template (see our blog article on custom reporting for general details on doing this).

You specifically need to change:

          <td>
            <xsl:value-of select="IncidentResolutions/IncidentResolution[last()]/Resolution" disable-output-escaping="yes"/>
          </td>


to

          <td>
            <xsl:for-each select="IncidentResolutions/IncidentResolution">
                <xsl:value-of select="Resolution" disable-output-escaping="yes"/><br />
            </xsl:for-each>
          </td>


Regards

Adam

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: Monday, November 14, 2016
  • Last Reply: Monday, November 14, 2016
  • Replies: 1
  • Views: 2513