Zum Inhalt

KPI-Dashboard

Alle Key Performance Indicators ueber alle Spaces. Automatisch aktualisiert via Dataview.


KPI-Uebersicht

TABLE
  title AS "KPI",
  management_system AS "Space",
  einheit AS "Einheit",
  zielwert AS "Zielwert",
  messfrequenz AS "Frequenz",
  kategorie AS "Kategorie"
FROM "IMS" OR "ISMSI" OR "QMS" OR "ISDS2"
WHERE type = "kpi"
SORT kategorie ASC, title ASC

KPIs nach Kategorie

TABLE WITHOUT ID
  kategorie AS "Kategorie",
  length(rows) AS "Anzahl KPIs"
FROM "IMS" OR "ISMSI" OR "QMS" OR "ISDS2"
WHERE type = "kpi"
GROUP BY kategorie
SORT kategorie ASC

Aktuelle vs. Zielwerte

TABLE
  title AS "KPI",
  management_system AS "Space",
  einheit AS "Einheit",
  zielwert AS "Zielwert",
  kategorie AS "Kategorie",
  messfrequenz AS "Frequenz"
FROM "IMS" OR "ISMSI" OR "QMS" OR "ISDS2"
WHERE type = "kpi" AND zielwert != null
SORT kategorie ASC, management_system ASC

Umwelt-KPIs

TABLE
  title AS "KPI",
  einheit AS "Einheit",
  zielwert AS "Zielwert",
  messfrequenz AS "Frequenz",
  status AS "Status"
FROM "IMS" OR "ISMSI" OR "QMS" OR "ISDS2"
WHERE type = "kpi" AND kategorie = "umwelt"
SORT title ASC

Änderungshistorie

Datum Autor Änderung
2026-02-15 Visitrans SPEC-06: Fachmodule — KPI, Schulung, DSMS-Register, Umwelt, Validator
2026-02-15 Visitrans Execute SPEC-03: Plugins, templates, dashboards, placeholder replacement