Logical Volume - выбор системы хранения

Добрый день.
Такой вопрос:
Есть в Itop тип КЕ Logical Volume, место установки которого привязано к типу КЕ “StorageSystem”.
>

              <sql>storagesystem_id</sql>
              <target_class>StorageSystem</target_class>
              <is_null_allowed>false</is_null_allowed>
              <on_target_delete>DEL_AUTO</on_target_delete>
    </field>

Есть ли возможность сделать выбор места установки не только из типа StorageSystem, но из Server, NAS и т.п., не создавая дополнительных полей на каждый новый класс, а расширив свойства имеющегося поля?

Вопрос решен:

<field id="system_id" xsi:type="AttributeExternalKey">
          <filter><![CDATA[SELECT FunctionalCI WHERE finalclass IN ('Server','VirtualMachine','PC')]]></filter>
          <sql>functionalci_id</sql>
          <target_class>FunctionalCI</target_class>
          <is_null_allowed>false</is_null_allowed>
          <on_target_delete>DEL_AUTO</on_target_delete>
          <allow_target_creation>false</allow_target_creation>
        </field>
        <field id="system_name" xsi:type="AttributeExternalField">
          <extkey_attcode>system_id</extkey_attcode>
          <target_attcode>name</target_attcode>
        </field>