Page 1 of 1

Sequencer Expression bug

Posted: Fri Apr 10, 2009 10:54 am
by kab123
I have used a Trigger, UserStatus-(Conditional) expression type in my sequence Job with expression
[b]'Finished OK' Or 'Finished with warnings'[/b]..The Job aborted but still continue to execute next set of Jobs in the sequence..
Is this a bug Or am I giving something wrong ? any advise is appreciated

Thanks

Posted: Fri Apr 10, 2009 11:08 am
by chulett
UserStatus <> Job Status and that's just text, not anything meaningful. You need a custom trigger to check for:

Code: Select all

JobActivityStage.$JobStatus = DSJS.RUNOK Or JobActivityStage.$JobStatus = DSJS.RUNWARN
Replace "JobActivityStage" with the actual name of the stage in your Sequence job.

Posted: Fri Apr 10, 2009 12:30 pm
by ray.wurlod
It's not a bug. The problem is between the keyboard and the chair.

And, by the way, a Sequencer does not have any expressions. It only has one property, and that only takes two possible values - "Any" or "All".

Please be careful with terminology.