<attributeGroup-create>

Definition:

<!ENTITY % cm.attributeGroup-create "
  (objClass, 
  name, 
  title?,
  index?)
">
<!ELEMENT attributeGroup-create %cm.attributeGroup-create;>

Aufgabe: Legt eine neue Feldergruppe an.

Rückgabewert bei Erfolg: der Name der neuen Gruppe.

Erforderliche Rechte: Der authentifizierte Benutzer muss das Recht permissionGlobalRTCEdit haben.

Beispiel:

<cm-request...>
  <attributeGroup-create>
    <objClass>document</objClass>
    <name>furniture</name>
    <index>1</index>
  </attributeGroup-create>
</cm-request>

<cm-response...>
  <cm-code numeric="0" phrase="ok">
    <attributeGroup>
      <name>furniture</name>
    </attributeGroup>
  </cm-code>
</cm-response>