Skip to content
English

Views and dashboards

Simon is not a rigid accounting software with a set of imposed screens. Thanks to the MDX views system, the agent composes custom dashboards, reports and analyses on demand:

“Build me a dashboard with monthly revenue and expenses by category”

“Make me a VAT report with a chart of collected vs deductible amounts”

A view is a file mixing SQL queries, tables, charts and KPIs, rendered as an interactive page in the application. It is the ideal tool when information exists in your database but appears on no standard screen — cash tracking, margin analysis, checking a declaration, a closing cockpit. The agent can write and test the view for you, but it is up to you to verify that the indicator truly answers your question.


Pre-installed views

When your company is created, Simon installs a set of ready-to-use views — enough to steer without building anything. Here is the default set; it evolves with versions, and remains fully editable.

ViewDescription
Company healthDirector’s cockpit: revenue, expenses, result, cash, receivables, payables, tax, blocks
Profitability & marginGross margin, fixed/variable expenses, monthly result, top expenses
Cash runwayCash projection, buffer, arrears and risk of shortfall
Cash to collect / payCustomer invoices to chase and supplier payables by due date
Tax & contribution forecastTax/social due dates, 43/44 payables and configured provision
VAT to pay / reclaimVAT collected, deductible, net, due dates and anomalies
Customers & riskRevenue concentration, late payments and at-risk customers
Supplier spendingTop suppliers, probable recurrences and expenses by category
Director compensationPrudent cash, compensation, shareholder current account, result after configured corporate income tax
SCI — steeringRents, expenses, interest, fixed assets, commitments and SCI cash
Freelance — IK & socialResult, mileage allowance, social contributions and social payables
DocumentsOperational cockpit of documents with status, blocks and steps to process
Trial balanceGeneral trial balance by financial year
General ledgerDetailed entries by account
JournalEntries grouped by document
TransactionsBank transactions, reconciliation and posting
Chart of accountsAccount tree
Third partiesCustomers / Suppliers, activity, open balances and payment delay
CommitmentsLeases, loans, securities, arrears and cash impact
Commitment due dates30/60/90-day timeline of commitments to pay
Fixed assetsAsset tracking and depreciation alerts
Closing depreciationCharges, NBV, unposted depreciation and missing sources
Closing cockpitChecklist: documents, bank, invoices, depreciation, tax, suspense accounts
ODsManual journal entries
IKMileage allowances with annual summary
Customer invoicesIssued invoices, amount due, due date and lateness
Payment trackingOpen, actionable receivables and payables
Aged balanceAnalysis of receivables and payables by due date
DeclarationsTracking of periods and obligations
FormsConsultation of tax forms
Corporate income tax & taxable resultAccounting result, corporate income tax parameters and corporate income tax obligations
LetteringLettering tracking and priority unlettered lines

Living views, frozen reports

Two objects coexist, and the difference matters. A view replays its SQL queries every time it opens: change the financial year, the figures update. A report, on the contrary, embeds a snapshot of the data at the moment of its generation — it remains readable offline and fixes a picture at a given date, which makes it ideal for a balance sheet or a closing file.


Requesting a custom view

For any missing analysis, ask for it. The agent explores your database schema, tests its queries before including them, composes the view with the appropriate components, then saves the file — which appears immediately in the application.

For this it has a complete palette:

ComponentUse
TableInteractive data: sorting, search, filters, pagination, grouping
Metric (KPI)Card with a formatted value (€, %, number), icon and color
Metric with deltaN/N-1 or previous-month comparison
AlertInline business message with severity level
Bar chartMulti-series, stacked, mixed bars + line
Line chartWith fill option
Pie chartBreakdown by category
WaterfallBreakdown of a result or a cash flow
Pivot tableCross-tabulation by month, category, third party
TimelineTax due dates, commitments, year-end closing
Progress / GaugeProgress or buffer level
Tax formSpecialized rendering of forms 2050, 2033, CA3
FiltersText, dropdown, date range, dynamic search
GridFlexible layout (1/2, 1/3, 2/3 columns…)

A view looks like this — a header, SQL sources, components:

---
title: "Company health"
type: view
icon: BarChart3
---
## Key indicators
<Source sql="SELECT ... FROM v_ecritures WHERE decision = 'APPROVED' ...">
<Row>
<Col size="1/2">
<Metric value="ca" label="Revenue" format="euro" icon="TrendingUp" color="auto" />
</Col>
<Col size="1/2">
<Metric value="charges" label="Expenses" format="euro" icon="TrendingDown" />
</Col>
</Row>
<BarChart x="mois" y="ca:bar,charges:bar,resultat:line" />
</Source>

Creating and editing from a view

Some views (Third parties, Commitments, Fixed assets, ODs, IK) do not just display: a “Create” button opens a form suited to the entity, and each table row can be edited or deleted.