BEGIN DECLARE l_prop_name VARCHAR2(20) := 'remotely_monitored'; l_prop_value VARCHAR2(20) := '1'; l_target_type VARCHAR2(20) := 'oracle_cell'; BEGIN -- ESX Server is always remotely monitored. Since its target type "replaces" -- the host target type, there's no need to show host-related information -- such as alerts on the homepage. mgmt_target.add_target_type_property(l_target_type, l_prop_name, l_prop_value); END; END; /