02-15-2014 04:48 AM
Hi,
I need to generate a report for Excel environment. So standart TS report options doesn't work for me.
I need a row, column type report.
On row headers will be unique barcodes and column headers will be my measurements for each test step.
I know TS won't give this but where is these data located after the test?
02-16-2014 03:30 AM - last edited on 11-01-2024 03:32 PM by Content Cleaner
Which TestStand version are you using ?
Result processins has changed in TestStand 2012. It now uses plugin technology which is very open but much complex to understand.
Please find some links :
> Process Model Plug-In Architecture
Jean-Louis SCHRICKE
├ CTA - Certified TestStand Architect (2008 - 2022)
├ CTD - Certified TestStand Developer (2004 & 2007)
└ CLD - Certified LabVIEW Developer (2003 & 2005)
02-16-2014 03:43 AM
02-16-2014 04:05 AM
Hedohodo,
Standard TestStand result processing is completely generic and works for any sequence, sub-sequences and step names.
In your case, you need a specific database result logging with predefined columns headers (with custom schema).
A simpliest way could be to customize the TXT report login.
Please consider ReportGen_txt.seq.
Copy it into < TestStand Public Directory > or within your search directory.
Find a way to collect the step results you need in your report and attach these results to the UUT.
Customize ReportGen_txt.seq to save UUT information and step results on one row.
Jean-Louis SCHRICKE
├ CTA - Certified TestStand Architect (2008 - 2022)
├ CTD - Certified TestStand Developer (2004 & 2007)
└ CLD - Certified LabVIEW Developer (2003 & 2005)
02-17-2014 01:20 PM
If you want to create your own CSV report format, you might want to check out the <TestStandPublic>\Examples\Customizing Result Processing\Model Plugin - Simple Text Report\ example and consider using it as a starting point. It has examples for a basic text format report plug-in. It includes the source code in your choice of C, C#, or LabVIEW.