Forecast displays a financial forecast report that projects year-end financial results based on current budget and actuals, with optional filtering by fiscal year, budget, and fund. 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/forecast.
Overview
The Forecast page is accessible at/fa/reports/forecast. No explicit RequirePermission wrapper is on this route. The component (ForecastPage) uses filters — fiscalYearId, budgetId, fundId — to call useForecast and useForecastSummary, both scoped to currentOrganization.id. Results are rendered via ForecastChart, ForecastReport, and ForecastSummary components. A Download CSV button calls exportForecastToCsv(forecastData) when data is available.
Who it’s for
No explicit permission gate on this route.Before you start
- A fiscal year must exist in the system for filtering to work.
- The general ledger must have posted transactions for meaningful projections.
Steps
- Navigate to Finance → Reports → Forecast (
/fa/reports/forecast). - Select a Fiscal Year from the dropdown.
- Optionally filter by Budget and Fund.
- Review the
ForecastChartvisualization andForecastReporttable. - Review summary figures in
ForecastSummary. - Click Download CSV to export forecast data.
Key concepts
| Concept | Description |
|---|---|
useForecast | Hook computing forecast projections for the selected filters |
useForecastSummary | Hook returning high-level forecast summary metrics |
ForecastChart | Chart component visualizing projected year-end results |
ForecastReport | Tabular report of forecast data |
exportForecastToCsv | Utility exporting forecast data to CSV |
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/ForecastPage.tsx