maeGetRelxSetups
maeGetRelxSetups( [?runt_runName] [?sessiont_session] [?enabledg_enabled] ) =>l_relxSetups /nil
Description
Returns a list of reliability setups saved in the active setup or in the specific run of a run plan.
Arguments
Value Returned
|
The reliability setups cannot be retrieved because of an error. |
Examples
The following example returns all the reliability setups saved in the active setup of the current maestro session.
maeGetRelxSetups()
=> ("relA" "relB")
The following example returns the reliability setups which are enabled in the active setup of the current maestro session.
maeGetRelxSetups(?enabled t)
=> ("relB")
The following example returns the reliability setups which are disabled in the active setup of the current maestro session.
maeGetRelxSetups(?enabled nil)
=> ("relA")
The following example returns all the reliability setups that are saved in Run.0 in the current maestro session.
maeGetRelxSetups(?run "Run.0")
=> ("Aging_10yr" "Aging_5yr")
Return to top