marksisson
Programmer
My goal is to have Task1 always occur before Task2 but in addition, I want Task1 to only run when certain conditions are true. The conditional part is fine: I've got a global var that I interogate in Task1's workflow activex script as such:
if DTSGlobalVariables("DoBCP"
.Value then
Main = DTSStepScriptResult_ExecuteTask
else
Main = DTSStepScriptResult_DontExecuteTask
end if
But when Task1 doesn't execute, Task2 doesn't either. I set Task2's workflow precedence to "Completion" but it won't run if Task1 didn't execute.
What's the best workflow answer to this??
thanks
if DTSGlobalVariables("DoBCP"
Main = DTSStepScriptResult_ExecuteTask
else
Main = DTSStepScriptResult_DontExecuteTask
end if
But when Task1 doesn't execute, Task2 doesn't either. I set Task2's workflow precedence to "Completion" but it won't run if Task1 didn't execute.
What's the best workflow answer to this??
thanks