04-09-2020 04:01 AM
Solved! Go to Solution.
04-09-2020 06:56 AM
Is it a custom step type? If so, you could increment a fileglobal in the post-step of your custom step.
Alternatively, this could be done in SequenceFilePostStep. something like:
If (RunState.CallingStep.StepType.Name=="Your custom step type")
fileglobals.counter++
04-09-2020 07:58 AM
The execution profiler is also a way you could get this info without modifying the step type or sequence file. This would be an okay method if you only need to get this info periodically (on-demand) rather than after each execution.
If you need it after each execution, why not just use a results processing plug-in? You can make an extra instance of the report generator or database plug-in, and use a filter expression to only log results for your step type.
Hope this helps!
Trent