Functional Expenses renders the functional expenses report organized by expense function and nature, with filters for fiscal period and fund, and options to export and save the report definition. Route:Documentation Index
Fetch the complete documentation index at: https://docs.encoreos.io/llms.txt
Use this file to discover all available pages before exploring further.
/fa/reports/functional-expenses.
Overview
The Functional Expenses page is accessible at/fa/reports/functional-expenses. No explicit RequirePermission wrapper is on this route. The component (FunctionalExpensesPage) uses useReportFilters for filter state (periodId, fundId), fetches fiscal periods via useFiscalPeriods, funds via useFunds, and report data via useFunctionalExpenses({ organizationId, periodId, fundId }). Results are rendered via FunctionalExpensesReport with a ReportHeader. Export is available via ReportExportButtons. Report definitions can be saved via SaveReportDialog using useSaveReportDefinition.
Who it’s for
No explicit permission gate on this route.Before you start
- Functional expense classifications must be applied to the chart of accounts or transactions.
- At least one fiscal period must be configured.
Steps
- Navigate to Finance → Reports → Functional Expenses (
/fa/reports/functional-expenses). - Use
ReportFiltersto select a fiscal Period and optionally a Fund. - Review the
FunctionalExpensesReportrendered with filtered data. - Export the report using
ReportExportButtons. - Optionally save the filter configuration as a named report definition via Save Report.
Key concepts
| Concept | Description |
|---|---|
useFunctionalExpenses | Hook fetching functional expense data for org, period, fund |
useReportFilters | Hook managing report filter state (periodId, fundId) |
FunctionalExpensesReport | Component rendering the functional expense report table |
SaveReportDialog | Dialog for saving the current filter configuration as a report definition |
useSaveReportDefinition | Mutation persisting a named report definition |
Related
Finance & Revenue
Finance & Revenue core overview.
Governance & parity
This page documents shipped product behavior. It is not medical, legal, or
billing advice. Verify against your organization’s policies and applicable
regulations before using it for clinical, compliance, or billing decisions.
Protected health information (PHI) shown in the product is governed by your
tenant’s access controls and is never exposed in this documentation.
Documentation sources
Documentation sources
- src/routes/fa.tsx
- src/cores/fa/pages/FunctionalExpensesPage.tsx