08-03-2007 03:17 AM
08-03-2007 11:31 AM
08-03-2007 11:42 AM
I just tried this in the postaction (CustomConditionExpression) of one step and it seems to work...
(
Step.Result.Status=="Done")?(StationGlobals.XYZ=TRUE):(StationGlobals.XYZ=FALSE)08-06-2007 12:31 AM
08-06-2007 12:47 AM
Hi,
You can do this in the ProcessModelPostResultListEntry callback sequence. This is called after the step results have been evaluated.
Regards
Ray Farmer
08-06-2007 01:01 AM
Hi Ray,
Doesn't modifying that callback sequence affect all steps?
If we use the callback but if we want to change the StationGlobal according to the result of a single step among many others then we will again need to put some effort in distinguishing the last executed step.
Am I right?
08-06-2007 01:21 AM
08-06-2007 01:21 AM
12-19-2008 04:05 AM
Hi Ray,
Thank you very much for this answer!!
I always use the post expression in order to set the step.ReportText. Due to the order of evaluations inside the step, I could not use it (in some cases). The option 1 in your answer makes it possible. So simple, but yet....I didn't think about it.
Thanks
Rafi