Customizing the UUT Report Header for an ATML Test Results 6.01 or 5.0 Report

Complete the following steps to add a row in the header of a report to display the ID of the result set the report contains.

  1. Open the .xsl file.
  2. Search for the CREATE_UUTHEADER_INFO comment and uncomment the following table row code that appears after the comment:
    <tr>
      <td>
        ResultSet ID
      </td>
      <td>
        <xsl:value-of select="tr:ResultSet/@ID"/>
      </td>
    </tr>

The expression "tr:ResultSet/@ID" specifies the XPath expression to obtain the result set ID from the XML file. You must customize the XPath expression to match the data you want to add to the additional rows. Refer to the World Wide Web Consortium (W3C) website, located at www.w3.org, for more information about XPath.