You can use the AdditionalData container to programmatically add custom UUT data to the header:
1.Override the PreUUT Callback in the client sequence file. Note that the new callback sequence contains the Parameters.UUT property.
2. Add a statement step to dynamically add a property in the Parameters.UUT.AdditionalData container. For example, this expression creates two string data sub-properties:
Parameters.UUT.AdditionalData.SetValString("Manufacturer.Name",1,"National Instruments"),
Parameters.UUT.AdditionalData.SetValString("Manufacturer.Location",1,"Debrecen, Hungary"),
Note: Using the SetValString method with 1 as the PropertyOption creates a property if it does not exist. If you want to create a numeric property, use SetValNumber instead.
3. Add a statement step to set the IncludeInReport flag for the AdditionalData property to include all sub-properties in the Report.
Parameters.UUT.AdditionalData.SetFlags("",0, PropFlags_IncludeInReport)
Note: Alternatively, you can manually add data to and enable the IncludeInReport flag for the Locals.UUT or Locals.ModelData.StationInfo container of a process model entry point at edit-time to add UUT or Station data for all client sequence files.
For more information about customizing TestStand reports, refer to Best Practices for NI TestStand Report Generation and Customization and Generating and Customizing Reports in the NI TestStand Help.