Options that determine how a job or step responds to a failed condition.
enum ConditionFailureOptionsEnum { cfFail = 1, cfRun = 2, cfSkip = 4, cfEndJob = 8, cfWarn = 0x10 };
public enum ConditionFailureOptionsEnum { cfFail = 1, cfRun = 2, cfSkip = 4, cfEndJob = 8, cfWarn = 0x10 }
Public Enum ConditionFailureOptionsEnum cfFail = 1 cfRun = 2 cfSkip = 4 cfEndJob = 8 cfWarn = &H10 End Enum
|
Members |
Description |
|
cfFail = 1 |
The job or step fails. |
|
cfRun = 2 |
The job or step runs anyway (the failure is ignored). |
|
cfSkip = 4 |
The job or step is skipped (this is logged as a skip, not a failure). |
|
cfEndJob = 8 |
The job ends. |
|
cfWarn = 0x10 |
A warning message is logged and execution continues. |
|
adTempus API Reference version 3.0.0.0, revised 10/30/2008
|