modellerUpdated 2026-06-04

Model Details

What this covers

The Model Details panel is a quick reference for everything inside the open model. It has two tabs: Model, which lists the model's attributes and shows the SQL that produces them, and Documents, which holds the auto-generated model documentation. Open it from the toolbelt on the right of the Model Builder (the document icon).

The Model tab

The Model tab answers one question: what does this model expose, and to whom?

Persona selector

At the top of the tab is a Persona dropdown.

Attribute table

Each row is one attribute (a physical column or a user-defined attribute).

ColumnMeaning
#Row number in the current view
AttributeThe canonical (technical) name of the column
Data typeThe column's data type, e.g. varchar, numeric
Display nameThe friendly name shown to business users
DescriptionThe business description. If the attribute is linked to a Business Glossary term, the glossary definition is shown; otherwise the attribute's own description is used
TypePhysical for a real source column, UDA for a user-defined attribute
Source tableThe table the attribute belongs to
FormulaFor UDAs, the expression that defines the attribute; blank for physical columns

Export

The Export button downloads the table exactly as shown (respecting the persona filter) in your choice of format:

Source SELECT statement

Below the table is a read-only, formatted SELECT statement. This is the query the platform runs for SELECT * FROM <model>, rewritten for the selected persona — so it projects exactly the columns the persona can see. Use the copy button to put it on your clipboard, for example to paste into the Query Panel or a BI tool. If the statement cannot be produced, a short notice appears instead.

The Documents tab

The Documents tab shows generated documentation for the model — its tables, measures, dimensions, and relationships. It is produced automatically when you open the tab; there is no button to press. Use the copy and download icons to take the documentation as Markdown.

Tips

Related