maeGetRunPlan
maeGetRunPlan( [?sessiont_sessionName] [?historyNamet_historyName] [ ?enabledt_enabled] ) =>l_runPlanNames/ nil
Description
Returns a list of all the runs available in the run plan for the given session or history.
This function is applicable only for ADE Assembler.
Arguments
|
Name of this history for which you want to get the names of child histories corresponding to each run in the run plan. |
||
|
Enabled or disabled status according to which you want to get a list of runs. |
||
Value Returned
Examples
Returns the names of runs for the current session.
maeGetRunPlan()
=> ("Run.0" "Run.1")
Returns the names of runs for the given session.
sess= maeOpenSetup("solutions" "ampTest" "maestro")
=> "session0"
maeGetRunPlan(?session sess1)
=> ("Run.0" "Run.1" "Run.2")
Returns the names of runs for the given run plan history.
maeGetRunPlan(?historyName "Plan.0")
=> ("Plan.0.Run.0" "Plan.0.Run.1")
Return to top