Linked.Archi

Deliverable Templates

Deliverable Templates

https://meta.linked.archi/leanix/deliverable-templates#

Application Portfolio Report

A LeanIX-based application portfolio report covering the application landscape, technology dependencies, and interface analysis. Suitable for portfolio rationalization, technology lifecycle reviews, and integration planning.

Template: templates/application-portfolio-report.md.hbs
Required Viewpoints: ApplicationPortfolio TechnologyLandscape InterfaceMap
Target Purposes: Deciding, Informing
Available Formats: MarkdownFormat, HTMLFormat, PDFFormat

Sections

1 1. Application Portfolio
Catalog of applications with business capability alignment and ownership.
Viewpoint: ApplicationPortfolio Result key: applicationPortfolio
SPARQL Query
PREFIX lmm:  <https://meta.linked.archi/leanix/onto#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>

SELECT ?element ?label ?type ?description ?capability ?organization WHERE {
    ?element a ?type ;
             skos:prefLabel ?label .
    VALUES ?type { lmm:Application lmm:BusinessApplication lmm:Deployment lmm:Microservice }
    OPTIONAL { ?element skos:definition ?description }
    OPTIONAL {
        ?element lmm:supports ?cap .
        ?cap skos:prefLabel ?capability .
        FILTER(lang(?capability) = "en")
    }
    OPTIONAL {
        ?element lmm:usedByOrg ?org .
        ?org skos:prefLabel ?organization .
        FILTER(lang(?organization) = "en")
    }
    FILTER(lang(?label) = "en")
} ORDER BY ?type ?label
2 2. Technology Landscape
IT components, technology categories, platforms, and providers.
Viewpoint: TechnologyLandscape Result key: technologyLandscape
SPARQL Query
PREFIX lmm:  <https://meta.linked.archi/leanix/onto#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>

SELECT ?element ?label ?type ?description ?category ?provider WHERE {
    ?element a ?type ;
             skos:prefLabel ?label .
    VALUES ?type { lmm:ITComponent lmm:Platform lmm:TechCategory lmm:Provider }
    OPTIONAL { ?element skos:definition ?description }
    OPTIONAL {
        ?element lmm:categorizedBy ?cat .
        ?cat skos:prefLabel ?category .
        FILTER(lang(?category) = "en")
    }
    OPTIONAL {
        ?element lmm:providedBy ?prov .
        ?prov skos:prefLabel ?provider .
        FILTER(lang(?provider) = "en")
    }
    FILTER(lang(?label) = "en")
} ORDER BY ?type ?label
3 3. Interface Map
Application interfaces and data object exchanges.
Viewpoint: InterfaceMap Result key: interfaceMap
SPARQL Query
PREFIX lmm:  <https://meta.linked.archi/leanix/onto#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>

SELECT ?interface ?interfaceLabel ?description ?provider ?providerLabel ?consumer ?consumerLabel ?dataObject WHERE {
    ?interface a lmm:Interface ;
               skos:prefLabel ?interfaceLabel .
    OPTIONAL { ?interface skos:definition ?description }
    OPTIONAL {
        ?provider lmm:hasInterface ?interface .
        ?provider skos:prefLabel ?providerLabel .
        FILTER(lang(?providerLabel) = "en")
    }
    OPTIONAL {
        ?consumer lmm:hasInterface ?interface .
        ?consumer skos:prefLabel ?consumerLabel .
        FILTER(?consumer != ?provider)
        FILTER(lang(?consumerLabel) = "en")
    }
    OPTIONAL {
        ?interface lmm:usesData ?do .
        ?do skos:prefLabel ?dataObject .
        FILTER(lang(?dataObject) = "en")
    }
    FILTER(lang(?interfaceLabel) = "en")
} ORDER BY ?interfaceLabel
📄 Template Preview
---
title: "Application Portfolio Report"
date: "{{meta.date}}"
author: "{{meta.author}}"
status: "{{meta.status}}"
version: "{{meta.version}}"
---

# Application Portfolio Report

{{#if meta.description}}
> {{meta.description}}
{{/if}}

| Property | Value |
|----------|-------|
| Date | {{meta.date}} |
| Author | {{meta.author}} |
| Status | {{meta.status}} |
| Version | {{meta.version}} |
| Metamodel | SAP LeanIX Meta Model v4 |

---

## 1. Application Portfolio

Catalog of applications with business capability alignment and ownership.

### Applications

| Application | Type | Capability | Organization | Description |
|-------------|------|------------|--------------|-------------|
{{#each applicationPortfolio}}
| {{this.label}} | {{this.type}} | {{this.capability}} | {{this.organization}} | {{this.description}} |
{{/each}}

---

## 2. Technology Landscape

IT components, technology categories, platforms, and providers.

### Technology Stack

| Component | Type | Category | Provider | Description |
|-----------|------|----------|----------|-------------|
{{#each technologyLandscape}}
| {{this.label}} | {{this.type}} | {{this.category}} | {{this.provider}} | {{this.description}} |
{{/each}}

---

## 3. Interface Map

Application interfaces and data object exchanges.

### Interfaces

| Interface | Provider | Consumer | Data Object | Description |
|-----------|----------|----------|-------------|-------------|
{{#each interfaceMap}}
| {{this.interfaceLabel}} | {{this.providerLabel}} | {{this.consumerLabel}} | {{this.dataObject}} | {{this.description}} |
{{/each}}

Transformation Plan Document

A LeanIX-based transformation plan covering capability mapping, strategic objectives, and initiative roadmaps. Suitable for transformation governance, investment decisions, and executive briefings.

Template: templates/transformation-plan-document.md.hbs
Required Viewpoints: CapabilityMap TransformationRoadmap
Target Purposes: Deciding, Governing
Available Formats: MarkdownFormat, PDFFormat

Sections

1 1. Capability Map
Business capabilities and their supporting applications.
Viewpoint: CapabilityMap Result key: capabilityMap
SPARQL Query
PREFIX lmm:  <https://meta.linked.archi/leanix/onto#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>

SELECT ?capability ?capabilityLabel ?description ?application ?applicationLabel ?organization ?orgLabel WHERE {
    ?capability a lmm:BusinessCapability ;
                skos:prefLabel ?capabilityLabel .
    OPTIONAL { ?capability skos:definition ?description }
    OPTIONAL {
        ?application lmm:supports ?capability .
        ?application skos:prefLabel ?applicationLabel .
        FILTER(lang(?applicationLabel) = "en")
    }
    OPTIONAL {
        ?application lmm:usedByOrg ?organization .
        ?organization skos:prefLabel ?orgLabel .
        FILTER(lang(?orgLabel) = "en")
    }
    FILTER(lang(?capabilityLabel) = "en")
} ORDER BY ?capabilityLabel ?applicationLabel
2 2. Transformation Roadmap
Strategic objectives, initiatives, and their impact on applications.
Viewpoint: TransformationRoadmap Result key: transformationRoadmap
SPARQL Query
PREFIX lmm:  <https://meta.linked.archi/leanix/onto#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>

SELECT ?objective ?objectiveLabel ?initiative ?initiativeLabel ?application ?applicationLabel ?impactType WHERE {
    ?objective a lmm:Objective ;
               skos:prefLabel ?objectiveLabel .
    OPTIONAL {
        ?objective lmm:drives ?initiative .
        ?initiative a lmm:Initiative ;
                    skos:prefLabel ?initiativeLabel .
        FILTER(lang(?initiativeLabel) = "en")
        OPTIONAL {
            ?initiative lmm:impacts ?application .
            ?application skos:prefLabel ?applicationLabel .
            FILTER(lang(?applicationLabel) = "en")
        }
    }
    FILTER(lang(?objectiveLabel) = "en")
} ORDER BY ?objectiveLabel ?initiativeLabel ?applicationLabel
📄 Template Preview
---
title: "Transformation Plan Document"
date: "{{meta.date}}"
author: "{{meta.author}}"
status: "{{meta.status}}"
version: "{{meta.version}}"
---

# Transformation Plan Document

{{#if meta.description}}
> {{meta.description}}
{{/if}}

| Property | Value |
|----------|-------|
| Date | {{meta.date}} |
| Author | {{meta.author}} |
| Status | {{meta.status}} |
| Version | {{meta.version}} |
| Metamodel | SAP LeanIX Meta Model v4 |

---

## 1. Capability Map

Business capabilities and their supporting applications.

### Capabilities

| Capability | Description | Application | Organization |
|------------|-------------|-------------|--------------|
{{#each capabilityMap}}
| {{this.capabilityLabel}} | {{this.description}} | {{this.applicationLabel}} | {{this.orgLabel}} |
{{/each}}

---

## 2. Transformation Roadmap

Strategic objectives, initiatives, and their impact on applications.

### Objectives & Initiatives

| Objective | Initiative | Impacted Application |
|-----------|------------|---------------------|
{{#each transformationRoadmap}}
| {{this.objectiveLabel}} | {{this.initiativeLabel}} | {{this.applicationLabel}} |
{{/each}}