Zum Inhalt springen
Search the hub

← All suppliers

DMS

OpenText (Content Server)

ECM core: document/version/folder, category and permissions — metadata load, PII and DMS measures; no binary bodies or OCR 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 created

How many documents were created in the period?

COUNT(*) FROM document WHERE CreateDate IN period
Grain
Created document
Fields
Document.DataID, Document.CreateDate, Document.CategoryID
Dimensions
mime_type, category, department

CreateDate from DTree; exclude system/temp folder content.

Adapt: Separate by category for retention-relevant vs transient documents.

Example

Checked-out documents

How many documents are currently checked out?

COUNT(*) FROM document WHERE ReserveUserID IS NOT NULL
Grain
Checked-out document (snapshot)
Fields
Document.DataID, Document.OwnerID
Dimensions
mime_type, department

Use the ReserveUserID field from DTree for checkout status.

Adapt: Separately flag long checkouts (> 7 days) as a risk.

Versions count

How many new versions were created in the period?

COUNT(*) FROM document_version WHERE CreateDate IN period
Grain
Document version
Fields
DocumentVersion.DataID, DocumentVersion.VersionNum, DocumentVersion.CreateDate
Dimensions
mime_type

Use daily aggregates per category at high volume.

Adapt: Exclude auto-generated rendition versions from counts.

Storage volume by category

How much storage volume sits in each category?

SUM(FileSize) FROM document_version GROUP BY CategoryID
Grain
Document version (latest per document)
Fields
DocumentVersion.FileSize, Document.CategoryID
Dimensions
category

Count only the latest version per document, not the sum of all historical versions.

Adapt: Report large media/video categories separately.

Permission grants per document

How many active permission grants does the average document have?

AVG(grant_count) FROM permission GROUP BY NodeID
Grain
Document (permission snapshot)
Fields
Permission.NodeID, Permission.UserID, Permission.PermType
Dimensions
permission_type, department

Distinguish group vs user grants — group expansion distorts counts.

Adapt: Evaluate public/everyone grants separately as a risk flag.

Formula overview

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

Label Formula Grain Fields
Documents created COUNT(*) FROM document WHERE CreateDate IN period Created document Document.DataID, Document.CreateDate, Document.CategoryID
Checked-out documents COUNT(*) FROM document WHERE ReserveUserID IS NOT NULL Checked-out document (snapshot) Document.DataID, Document.OwnerID
Versions count COUNT(*) FROM document_version WHERE CreateDate IN period Document version DocumentVersion.DataID, DocumentVersion.VersionNum, DocumentVersion.CreateDate
Storage volume by category SUM(FileSize) FROM document_version GROUP BY CategoryID Document version (latest per document) DocumentVersion.FileSize, Document.CategoryID
Permission grants per document AVG(grant_count) FROM permission GROUP BY NodeID Document (permission snapshot) Permission.NodeID, Permission.UserID, Permission.PermType

Tour