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

# Reconciliation Report

> View and export a printable reconciliation report for a completed bank reconciliation in Finance & Revenue.

The Reconciliation Report page at `/fa/reconciliations/:id/report` displays a formatted reconciliation summary for a specific reconciliation session with CSV and PDF export options.

## Overview

The route `/fa/reconciliations/:id/report` loads `ReconciliationReportPage`. Data is fetched via `useReconciliationReport`, which returns a `reconciliation` object and associated report data. The page breadcrumb is set to "Reconciliation Report: \[bank account name]" via `useEntityBreadcrumb`. Export utilities `exportReconciliationToCSV` and `exportReconciliationToPDF` are provided as action buttons.

## Who it's for

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

* The reconciliation must already exist. Navigate from the reconciliation detail page.

## Steps

1. From the Reconciliation Detail page (`/fa/reconciliations/:id`), navigate to the report (a Reports tab or link).
2. Or go directly to `/fa/reconciliations/:id/report`.
3. Review the reconciliation report content.
4. Select **Export CSV** or **Export PDF** to download the report.

## Key concepts

**`exportReconciliationToCSV` / `exportReconciliationToPDF`** — Utility functions from `src/cores/fa/utils/reconciliationExport.ts` that generate downloadable report files client-side.

## 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/ReconciliationReportPage.tsx
  * src/cores/fa/hooks/useReconciliationReport.ts
  * src/cores/fa/utils/reconciliationExport.ts
</Accordion>
