In der Systembeschreibung werden relevante Dokumente für jedes IT-System aufgeführt. Diese Dokumente sind dem IT-System im entsprechenden Zuordnungsdiagramm jeweils durch ein Objekt des Typs Informationsträger (Symbol Dokument) zugeordnet. Für diesen Informationsträger müssen die Systemattribute Verknüpfung 1 und Titel 1 gepflegt sein.
Damit ein Dokument in der Systembeschreibung angezeigt wird, muss ein definiertes Attribut mit dem entsprechenden Wert gepflegt sein. Attribut und Werte definieren Administratoren in der Konfigurationsdatei ARIS Publisher Server-Installationsverzeichnis\tomcat\webapps\businesspublisher\config\extensions\ext02\mappings.xml.
Im Bereich IT System finden Sie den Abschnitt Mappings for documents. Pro Dokumenttyp ist standardmäßig für das Attribut Identifizierer (AT_ID) ein Wert definiert. Im folgenden Beispiel aus der Standardkonfiguration sind für Anforderungsspezifikation und Technische Spezifikation die Werte requirementsSpecification und technicalSpecification definiert.
<!-- ############################# IT System ############################# -->
...
<!--
=============================================================================
Mappings for documents.
=============================================================================
-->
<!-- Requirements Specification -->
<mapping name="requirementsSpecification" type="objectSet" target="document" relationType="composite">
<apply-template name="document">
<attribute typeNum="AT_ID" value="requirementsSpecification" function="filter,control"/>
</apply-template>
</mapping>
<!-- Technical Specification -->
<mapping name="technicalSpecification" type="objectSet" target="document" relationType="composite">
<apply-template name="document">
<attribute typeNum="AT_ID" value="technicalSpecification" function="filter,control"/>
</apply-template>
</mapping>
...