Customizing the UUT Report Header for an ATML Test Results 6.01 or 5.0 Report
- Updated2025-07-23
- 1 minute(s) read
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.
- Open the .xsl file.
- 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.