maeDeleteRunCondition
maeDeleteRunCondition(
t_runName
[ ?name t_name ] | [ ?all g_all ]
)
=> t / nil
Description
Deletes a run condition from a run in the run plan.
Arguments
|
t_runName
|
Name of the run from which the run condition is to be deleted.
|
|
?name t_name
|
Name of the run condition to be deleted.
If not specified, the function looks for ?all. If both are not specified, returns an error.
|
|
?all g_all
|
Specifies whether all run conditions are to be deleted from the given run. By default, this argument is set to nil.
The valid values are t and nil.
|
Value Returned
|
t
|
Deletes the given run condition from the specified run.
|
|
nil
|
Indicates an error.
|
Examples
Deletes the run condition named COND1 from run Run.7.
maeDeleteRunCondition("Run.7" ?name "COND1")
=> t
Related Topics
Executing a Run Plan Based on Conditions
Return to top