Forecast Details is the tabbed detail view for a single rolling forecast record, showing forecast lines, actual vs. forecast comparisons, and version history. 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/rolling-forecasts/:id.
Overview
The Forecast Details page is accessible at/fa/rolling-forecasts/:id and requires permission fa.rolling_forecasts.view. The component (RollingForecastDetailPage) fetches the forecast via useRollingForecast(id, organizationId) and lines via useRollingForecastLines. It renders a tabbed interface (tab state via ?tab= search param, default lines):
- Lines tab:
ForecastLineEditorfor period-level forecast entries - vs. Actual tab:
ForecastVsActualTablecomparing forecast to actual - History tab:
ForecastVersionHistoryshowing version audit trail
active) and Archive (sets status to archived) via useUpdateForecastStatus. A ForecastStatusBadge shows the current status. The breadcrumb displays forecast_name.
Who it’s for
Requires permissionfa.rolling_forecasts.view.
Before you start
- You must have
fa.rolling_forecasts.viewpermission. - The rolling forecast must exist; navigate to it via the Budgeting Hub (
/fa/budgeting?tab=forecasts).
Steps
- Navigate to the Budgeting Hub (
/fa/budgeting?tab=forecasts) and open a rolling forecast. - On the Lines tab, review or edit period-level forecast entries in
ForecastLineEditor. - On the vs. Actual tab, compare forecast to actual figures in
ForecastVsActualTable. - On the History tab, review version history in
ForecastVersionHistory. - Use Activate or Archive buttons to change the forecast status.
- Click Edit to navigate to
/fa/rolling-forecasts/:id/edit.
Key concepts
| Concept | Description |
|---|---|
ForecastLineEditor | Component for managing period-level forecast line entries |
ForecastVsActualTable | Comparison table of forecast vs. actual figures |
ForecastVersionHistory | Audit trail of forecast version changes |
ForecastStatusBadge | Visual indicator of the forecast status |
useUpdateForecastStatus | Mutation for activating or archiving a forecast |
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/RollingForecastDetailPage.tsx