02-29-2008 05:11 AM
02-29-2008 05:54 AM
02-29-2008 06:13 AM
I tried that method, although I am using the batch model rather than sequential, and it came up with a bug - 'unknown variable ReportOptions' , see attachment.
02-29-2008 06:22 AM
Hi,
Should it not be "Locals.ReportOptions" or "Parameters.ReportOptions".
Or is there such a variable declared in the right location or your Sequence.
I have used this along time ago a did get it working.
Ray Farmer
02-29-2008 06:53 AM
I am not sure what it should read, I just copied it from the 'on the fly' sequence example as instructed. I guess the NI 'on the fly' example is wrong, maybe it was updated on a lated version of TestStand (I have 2.0.1)?
03-03-2008 02:18 AM
Steve,
The problem is that you are using the Batch Process Model but the OnFlyReport documentation give a set of instruction to modify the Sequential Model.
In the Batch and Parallel models. ReportOptions doesn't exist in the same place as the Sequential Model ie Locals.ReportOptions.
Therefore you need to modify the various step that obtain the ReportOptions information from:
RunState.Root.Locals.ReportOptions
To:
RunState.Root.Parameters.ModelData.ReportOptions
Hope this helps
Regards
Ray Farmer
03-03-2008 06:14 AM