INSERT, REMOVE and
REMOVE_ALL instruction
Using these instructions user can dynamically control the contents of Object Sets. That is, user can insert or remove objects from Object Sets.
Syntax
- insert
object-identifier inset-name - remove
object-identifier fromset-name - remove_all
from
set-name object-name
or
- $(
parameter-name )
whereparameter-name is the name of an action parameter of the action containing the insert/remove instruction.
where
Examples:
insert HV-78 in POWER-SUPPLIES
this instruction will insert object called HV-78 into object set called POWER-SUPPLIES
remove HV-45 from POWER-SUPPLIES
this instruction will remove object called HV-45 from object set called POWER-SUPPLIES
remove_all from POWER-SUPPLIES
will make object set called POWER-SUPPLIES empty
action : CONFIGURE (..., HV-NAME ,...)
.....
insert $( HV-NAME) in POWER-SUPPLIESthis instruction will insert object, whose name is picked up from the value of the action parameter HV-NAME, into the object set called POWER-SUPPLIES