Hi,
I assume you need the SequenceFile Path where the LabView test step is located in TestStand.
To reach to the currently executing step SequenceFile path you have to:
1. get the SequenceContext for the execution
2. get the currently executing step from the SequenceContext (SequenceContext.Step)
3. get the sequence in which the step resides from the Step (Step.Sequence)
4. get the containing sequence file for the Sequence (Sequence.SequenceFile)
5. get the Path from the SequenceFile (SequenceFile.Path property)
In case you want to determine the VI file path for the LabView test step Module one approach is:
1. get the SequenceContext for the execution
2. get the currently executing step from the SequenceContext (SequenceContext.Step)
3. get the PropertyObject for the step (Step.AsPropertyObject)
4. get the VI relative path from the step subproperty using "TS.SData.ViCall.VIPath" lookup string (PropObject.GetValString)
5. now use the Engine.FindFile on the retrieved path at the step 4. above, to get the path to the executing VI
Hope this helps,
Silvius
Silvius Iancu