BigAngryHillMan Posted November 29, 2011 Report Share Posted November 29, 2011 Does anyone know how to access all the results in teststand using labview before they are parsed by the report and database sections of the sequence file. (SequentialModel). I need to check that all the numerical values are valid before they are passed to the SQL server. My thanks in advance. Quote Link to comment
Roderic Posted November 29, 2011 Report Share Posted November 29, 2011 All results are stored in the ResultList container. hope this helps. You can also customize the Sequential Model and add a step (to check if inputs are valid) before adding them to report/Database. Quote Link to comment
BigAngryHillMan Posted November 29, 2011 Author Report Share Posted November 29, 2011 Thanks, everything helps. I understand that the ResultsList holds the results for that scope but what I don’t understand is when a main sequence calls a sub sequence that has its own ResultsList how to get all these different ResultsList so that I have all the results for a given test run. Quote Link to comment
Roderic Posted November 29, 2011 Report Share Posted November 29, 2011 Go to the ResultList Locals =>resultList=>[step Number of the sequence call]=>TS=>SequenceCall=>ResultList The ResultList is an Array of containers, if a step is a sequence call it contains the resulstlist of this sequence. Quote Link to comment
BigAngryHillMan Posted November 29, 2011 Author Report Share Posted November 29, 2011 Thanks, I understand now. Quote Link to comment
asbo Posted November 29, 2011 Report Share Posted November 29, 2011 Locals =>resultList=>[step Number of the sequence call]=>TS=>SequenceCall=>ResultList The bold section is only true if every step in your sequence is reporting. Otherwise, the array index correlates to the nth reporting step in the sequence. BigAngryHillMan, rather than having to dig through ResultLists, why not use a PostStep callback? You might consider using at the PostResultListEntry callback instead. 1 Quote Link to comment
BigAngryHillMan Posted November 29, 2011 Author Report Share Posted November 29, 2011 Thanks for you help, I will have a look at this tomorrow. Quote Link to comment
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.