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

# Revenue Recognitions

> View and manage the append-only ledger of recognized revenue entries per fiscal period in the Finance & Revenue core.

The Revenue Recognitions page (`/fa/revenue-recognitions`) displays the append-only ledger of recognized revenue entries per fiscal period and provides controls to process new recognitions or reverse existing ones.

## Overview

The Revenue Recognitions page shows all recognition entries for the current organization. The list is backed by the `useRevenueRecognitionList` hook and the `fa_revenue_recognitions` table.

The page is append-only. The **Process recognition** button opens a `ProcessRecognitionDialog` (requires `FA_PERMISSIONS.REVENUE_RECOGNITIONS_PROCESS`). Individual entries can be reversed via a `ReverseRecognitionDialog`.

Table columns observed in code include: Date, Schedule, and Period window.

## Who it's for

Requires permission: `fa.revenue_recognitions.view`.

To process new recognitions: the permission referenced by `FA_PERMISSIONS.REVENUE_RECOGNITIONS_PROCESS`.

## Before you start

* At least one revenue schedule must exist.
* An open fiscal period is required to process a recognition.
* You need `fa.revenue_recognitions.view` to access the page.

## Steps

**View recognition entries**

1. Navigate to `/fa/revenue-recognitions`.
2. Browse the recognitions table.

**Process a new recognition**

1. Click **Process recognition** (requires `FA_PERMISSIONS.REVENUE_RECOGNITIONS_PROCESS`).
2. Complete the dialog to select a fiscal period.
3. Confirm.

**Reverse an entry**

1. Locate the entry in the table.
2. Use the reverse action to open the `ReverseRecognitionDialog`.
3. Confirm.

## Key concepts

* **Recognition entry**: An append-only `fa_revenue_recognitions` row tied to a schedule and a fiscal period window.

## 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/RevenueRecognitionsPage.tsx
  * src/cores/fa/hooks/useRevenueRecognitions.ts
  * src/cores/fa/components/ProcessRecognitionDialog.tsx
  * src/cores/fa/components/ReverseRecognitionDialog.tsx
</Accordion>
