Deliverable Templates
https://meta.linked.archi/leanix/deliverable-templates#
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.
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
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
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
---
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}}
A LeanIX-based transformation plan covering capability mapping, strategic objectives, and initiative roadmaps. Suitable for transformation governance, investment decisions, and executive briefings.
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
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
---
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}}