The Report Schedules page (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/schedules) lets administrators configure automated report generation schedules and manage their enabled/disabled state.
Overview
The page displays all report schedules for the current organization with summary cards showing the active schedule count and total schedule count. Each schedule is rendered as aReportScheduleCard component showing its configuration and current enabled state.
Schedules can be toggled on/off, edited, run immediately, or deleted. New schedules are created via a ReportScheduleDialog.
The page uses useReportSchedules, useDeleteReportSchedule, useToggleSchedule, and useRunReportNow hooks backed by the fa_report_schedules table.
Who it’s for
No explicit permission gate on this route. Access to schedule management actions may be controlled within the dialog or card components.Before you start
- You need to know which report type to schedule.
- At least one report type must be available in the system.
Steps
Create a report schedule- Navigate to
/fa/reports/schedules. - Click Create Schedule.
- Complete the schedule form (report type, recurrence, delivery options).
- Save.
- Locate the schedule card.
- Toggle its enabled state.
- Locate the schedule card.
- Click the run-now action to trigger an immediate report run.
- Locate the schedule card.
- Use the edit or delete action.
Key concepts
- Schedule: A
fa_report_schedulesrow with anis_enabledflag and recurrence configuration. - Active schedules: Schedules where
is_enabledistrue.
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/ReportSchedulesPage.tsx
- src/cores/fa/hooks/useReportSchedules.ts
- src/cores/fa/components/ReportScheduleCard.tsx
- src/cores/fa/components/ReportScheduleDialog.tsx