01-18-2018 02:33 AM
Hi,
I see customizing the report file names is not only an issue for me, but for other people as well. I have found THIS post which solves the problem post test by running a labview VI.
I am wondering if we have any callback sequence which I can call from my MainSequence and runs after the report file generation is closed, so I can run my filename processing VI from there? By this I can save the step of manually running the VI, so it would be a way more robust solution.
Thanks.
Solved! Go to Solution.
01-18-2018 07:26 AM
Hi 1984
If you want your VI to work with only one sequence then override the Process Model PostUUT callback in that sequence file by inserting a sequence called PostUUT into your sequence file, then add your VI into it. When the Process Model gets to the PostUUT call, it will call your PostUUT sequence and your VI.
If you want your VI to be used for multiple different sequences (that use the same Process Model) then add a call to your VI into the Process Model PostUUT sequence directly. That way any sequence that uses the Process Model modified will have its results filename modified by your VI.
Steve
01-19-2018 01:20 AM
Ok... so what I have figured out seems to work slightly better and integrates to TestStand very well:
This changes the path of the report file as well as its name.