Zum Inhalt springen
Search the hub

← All suppliers

DMS

DocuWare

DMS core: document/revision/file cabinet, index fields and access rights — metadata load, PII and DMS measures; no binary bodies or full text.

Templates only — grain, filters, custom fields and ownership are firm-specific.

Copy formulas into the KPI Definition Card, then adapt grain and filters.

Example

Documents stored

How many documents were stored in the period?

COUNT(*) FROM document WHERE StoreDate IN period
Grain
Stored document
Fields
Document.DWDOCID, Document.StoreDate, Document.CabinetId
Dimensions
content_type, file_cabinet

StoreDate from the document header; exclude test/sandbox cabinets.

Adapt: Separate by cabinet for invoices vs contracts vs HR documents.

Example

Open workflow tasks

How many workflow tasks are currently open?

COUNT(*) FROM workflow_task WHERE TaskStatus = 'open'
Grain
Open workflow task (snapshot)
Fields
WorkflowTask.TaskId, WorkflowTask.TaskStatus, WorkflowTask.DueDate
Dimensions
task_status, file_cabinet

Check TaskStatus values per workflow definition.

Adapt: Track overdue tasks (DueDate < today) separately as a backlog KPI.

Revisions count

How many new revisions were created in the period?

COUNT(*) FROM revision WHERE RevisionDate IN period
Grain
Revision
Fields
Revision.DWDOCID, Revision.VersionNumber, Revision.RevisionDate
Dimensions
content_type

Use daily aggregates per cabinet at high volume.

Adapt: Exclude auto-generated OCR revisions from counts.

Storage volume by cabinet

How much storage volume sits in each file cabinet?

SUM(FileSize) FROM revision JOIN document ON document.DWDOCID = revision.DWDOCID GROUP BY document.CabinetId
Grain
Revision (latest per document)
Fields
Revision.FileSize, Document.CabinetId
Dimensions
file_cabinet

Count only the latest revision per document.

Adapt: Report large scan cabinets separately.

Approval stamp rate

What share of stamped documents is "approved"?

COUNT(*) FILTER (WHERE StampType = 'approved') / COUNT(*) FROM stamp
Grain
Stamp application
Fields
Stamp.StampId, Stamp.StampType, Stamp.DWDOCID
Dimensions
stamp_type, file_cabinet

Check StampType values per workflow configuration.

Adapt: Correctly de-duplicate multiple stamps per document (re-review).

Formula overview

Same formulas as a table — copy into KPI cards or SQL drafts.

Label Formula Grain Fields
Documents stored COUNT(*) FROM document WHERE StoreDate IN period Stored document Document.DWDOCID, Document.StoreDate, Document.CabinetId
Open workflow tasks COUNT(*) FROM workflow_task WHERE TaskStatus = 'open' Open workflow task (snapshot) WorkflowTask.TaskId, WorkflowTask.TaskStatus, WorkflowTask.DueDate
Revisions count COUNT(*) FROM revision WHERE RevisionDate IN period Revision Revision.DWDOCID, Revision.VersionNumber, Revision.RevisionDate
Storage volume by cabinet SUM(FileSize) FROM revision JOIN document ON document.DWDOCID = revision.DWDOCID GROUP BY document.CabinetId Revision (latest per document) Revision.FileSize, Document.CabinetId
Approval stamp rate COUNT(*) FILTER (WHERE StampType = 'approved') / COUNT(*) FROM stamp Stamp application Stamp.StampId, Stamp.StampType, Stamp.DWDOCID

Tour