> ## 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.

# Recurring Entries

> The /fa/recurring-entries route redirects to the General Ledger hub with the Recurring Entries tab active in Finance & Revenue.

The route `/fa/recurring-entries` is a legacy redirect to `/fa/ledger?tab=recurring-entries`. The recurring entry template list is now part of the General Ledger hub.

## Overview

Navigating to `/fa/recurring-entries` triggers a `<Navigate to="/fa/ledger?tab=recurring-entries" replace />`. The Recurring Entries tab in the GL hub loads `RecurringEntriesPage` lazily. That page manages recurring entry templates (`fa_recurring_entries`) with full CRUD plus a **Generate** action that invokes `useGenerateFromRecurring`. A dialog (`RecurringEntryDialog`) is used for create/edit. Keyboard shortcuts are supported via `useFAKeyboardShortcuts`.

## Who it's for

Access follows your organization's role and module configuration. ## Before you start

No setup required.

## Steps

1. Navigate to **Finance & Revenue → General Ledger → Recurring Entries**, or go to `/fa/ledger?tab=recurring-entries`.
2. Review existing recurring entry templates.
3. Select **New** (or use the keyboard shortcut) to create a template.
4. Select **Generate** on a template to produce journal entries from it.
5. Edit or delete templates as needed.

## Key concepts

**Recurring entry template** — A `fa_recurring_entries` record that defines the journal entry pattern and schedule for automatic generation.

**Generate action** — `useGenerateFromRecurring` creates actual journal entries from the template on demand.

## Related

<Columns cols={2}>
  <Card title="Finance & Revenue" icon="building-columns" href="/fa/overview">
    Finance & Revenue core overview.
  </Card>

  <Card title="Governance & parity" icon="scale-balanced" href="/governance/index" />
</Columns>

<Note>
  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.
</Note>

<Accordion title="Documentation sources">
  * src/routes/fa.tsx
  * src/cores/fa/pages/RecurringEntriesPage.tsx
  * src/cores/fa/hooks/useRecurringEntries.ts
  * src/cores/fa/pages/LedgerHubPage.tsx
</Accordion>
