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

# Deferred Revenue

> Read-only list of deferred revenue liability balances awaiting recognition. Records are typically created via schedule processing.

Deferred Revenue displays a read-only list of deferred revenue liability balances for the organization. Records represent amounts not yet recognized as revenue. Route: `/fa/deferred-revenue`

## Overview

The page fetches deferred revenue records via `useDeferredRevenueList(orgId)`. The page description from code: "Liability balances awaiting recognition. Records are typically created via schedule processing." Records are displayed in a table with status badges. An empty state is shown when no records exist. This page is read-only; records are created by processing revenue schedules (see Revenue Schedules).

## Who it's for

Requires permission: `fa.deferred_revenue.view`

## Before you start

* Revenue schedules must be created and processed to generate deferred revenue records.
* You must hold the `fa.deferred_revenue.view` permission.

## Steps

<Steps>
  <Step title="Navigate to Deferred Revenue">
    Go to `/fa/deferred-revenue`.
  </Step>

  <Step title="Review liability balances">
    The table lists deferred revenue records with status and balance information.
  </Step>

  <Step title="Investigate recognition">
    For details on recognition progress, see the Deferred Balance report at `/fa/revenue-reports/deferred-balance`.
  </Step>
</Steps>

## Key concepts

* **`useDeferredRevenueList`** — Primary data hook; fetches `fa_deferred_revenue` records for `orgId`.
* **Revenue schedules** — The process that creates deferred revenue records; see `/fa/revenue-schedules`.

## 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/DeferredRevenuePage.tsx
  * src/cores/fa/hooks/useDeferredRevenue.ts
</Accordion>
