The New Forecast page creates a rolling forecast record. It is accessible at routeDocumentation 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/new.
Overview
The page rendersRollingForecastForm with a PageHeader. On submit:
- A
fa_rolling_forecastsrecord is created viauseCreateRollingForecastwith fields:forecast_name, optionalforecast_description,forecast_start_date, optionalsource_budget_id,forecast_horizon_months,update_frequency,sharing_level,status: "draft"
- Forecast lines (if present) are created in parallel via
useCreateForecastLine. Each line includesaccount_id, optionalfund_id,department_id,program_id,site_id,period_start,period_end,forecast_amount, optionalnotes. - Navigates to
/fa/rolling-forecasts/:idon success.
/fa/rolling-forecasts.
Primary mutations: useCreateRollingForecast, useCreateForecastLine
Permission gate: fa.rolling_forecasts.create (route level)
Who it’s for
Permission required:fa.rolling_forecasts.create
Before you start
- Know the forecast name, start date, horizon in months, update frequency, and sharing level.
- Optionally identify a source budget to link for comparison.
- Have account, fund, department, program, and site assignments ready for forecast lines.
Steps
- Navigate to
/fa/rolling-forecasts/new. - Complete the
RollingForecastFormheader fields (name, start date, horizon months, frequency, sharing level, optional source budget). - Add forecast lines if desired.
- Submit. On success, you are redirected to the new forecast detail page.
Key concepts
- Forecast horizon:
forecast_horizon_months— defines how many months the forecast covers. - Status: Created with
status: "draft". - Source budget: Optional link to an existing budget for variance tracking.
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/RollingForecastNewPage.tsx
- src/cores/fa/hooks/useRollingForecastMutation.ts
- src/cores/fa/components/RollingForecastForm.tsx