06-03-2010 08:29 PM
Solved! Go to Solution.
06-04-2010 07:31 AM
Saravisu,
There is a way, using the SequenceFilePostStep callback. This will execute for every step, but you can use a Flow Control 'If' to Check for PropertyExists("Parameters.Result.TS.SequenceCall"); when true, the step results for the sequence call will be in Parameters.Result.TS.SequenceCall.ResultList.
Note this will only execute for steps that occur in the sequence file that contains the SequenceFilePostStep callback.
-Jack
06-04-2010 09:17 AM
If you are able to modify the process model, you could use the ProcessModelPostStepCallback. That will fire at the end of each step of any client sequence file of that process model.
Keep in mind that any PostStepCallback will incur a performance penalty, since it will be run after each step.
06-06-2010 08:59 PM
Jack,
Thanks Jack. That did the trick. It is working nicely.
Josh,
Thanks josh. Yes i do have the access to processmodel. I will definitely look into putting that into the process model so that i don't have to ask all the developers to include the callback in their sequence.