Make a decision as to whether the job run should be suppressed.
Usage: Resource list
If the expression evaluates to true then the job is not executed and no other resource statements are evaluated. The resource list will not be evaluated again. If the expression evaluates to false than the statement is ignored and the next statement is evaluated.
The operator FILE_NOT_FOUND can be used in any IF-THEN statement. It tests for the presence of one or more files and evaluates to true if the file is not present. The file name specification can include wildcards.
Format
IF expression THEN SUPPRESS_RUN
Examples
IF total != 5 THEN SUPPRESS_RUN
IF FILE_NOT_FOUND test1.dat THEN SUPPRESS_RUN
Make a decision as to whether the job run should be failed
Usage: Resource list
If the expression evaluates to true then the job is fails. The resource list will not be evaluated again. If the expression evaluates to false than the statement is ignored and the next statement is evaluated.
The operator FILE_NOT_FOUND can be used in any IF-THEN statement. It tests for the presence of one or more files and evaluates to true if the file is not present. The file name specification can include wildcards.
Format
IF expression THEN FAILRUN
Examples
IF total != 5 THEN failrun
IF FILE_NOT_FOUND test1.dat THEN failrun