NI TestStand

cancel
Showing results for 
Search instead for 
Did you mean: 

single report for all together

Hi,

I am having 10 Independent Sequence files(each one for diffrent Test for instruments in ATE).

am creating a UserInterface to select sequce file( User can select any Tests he desired) to execute.

but there will be only one reported created for each sequnce file,but i need a single report for all together.

How can i do this?

thanks in advance

 

 

Thanks

IVI

0 Kudos
Message 1 of 8
(3,631 Views)

You can either post-process the output logs or consider the advice in this thread.

0 Kudos
Message 2 of 8
(3,628 Views)

Hi,

Thanks for your response.

can you please explain me wht u ment by "POST PROCESSING OF OUTPUT LOGS"

 

 

Thanks

IVI

0 Kudos
Message 3 of 8
(3,622 Views)

After TestStand writes the files to disk, read in all the reports (they're just plain text) and then append them together as you see fit.

0 Kudos
Message 4 of 8
(3,619 Views)

Hi,

that not seems to be a viable solution ,since the report module is customized for each ATE.

and the code needs to be executed in all with out any change.

 

thanks

Bharathi

0 Kudos
Message 5 of 8
(3,617 Views)

Please explain in a lot more detail what you are trying to do. There are report options for the process model and an "Append to existing report" setting which would be trivial to use to put all of the reports in one file, but I'm guessing that's not what you want.

 

Also are these sequences all run on the same UUT? Why not then just have a main sequence that runs them all (using new executions sequence calls perhaps), waits for them all to finish, and collects all of their results and then just gets one set of results for all of them and lets the process model generate a single report from that.

 

Without more details about what you are trying to do it's hard to know what the best solution is. There are many ways to do things.

 

Hope this helps,

-Doug

0 Kudos
Message 6 of 8
(3,608 Views)

Hi,

i have a sequce which is a self-test for various instruments in ATE's

I have to do a master sequence includes some inital test common for all, where all these TPS(Seq Files) will be called together.

ATE is prone to get new instrument in near future,in that case i need a design where i will write a TPS and put it in a folder and MAster sequnce needs to pick tht and execute,this is because to reduce the overhead in releasing the master sequnce again and again for each new TPS.

 

This is my requirment,please let me know if you are not clear.

 

 

Thanks

IVI

0 Kudos
Message 7 of 8
(3,579 Views)

Are you saying that there is a master sequence that look for files in a directory and runs those sequences? If so I'm not sure why there even needs to be multiple executions, let alone multiple reports. The master sequence could just make a sequence call by expression for each sequence you need to call and they could all be run by the main execution. Thus all of the results would end up in the same report anyway. You can run them in new executions if you want to run them in parallel, still using sequence call steps by expression but without process models, then wait for the sequence call steps using wait steps and the results will then be attached to the wait step and show up in the main execution's report for such steps. How does all this relate to combining multiple reports into one, there is no inherent need to do so as far as I can tell. It greatly depends on how you implement things.

 

Hope this helps,

-Doug

0 Kudos
Message 8 of 8
(3,571 Views)