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

# My Compensation

> Employee self-service view of total compensation statements with year filtering and link to statement details.

The My Compensation page, at route `/hr/me/compensation`, lets employees view their total compensation statements.

## Overview

The page shows total compensation statements filtered to `sent` and `acknowledged` statuses via `useMyCompensationStatement`. A year selector limits results to a specific statement year (current year plus five prior). Each statement is displayed as a card with a `TotalCompensationStatementStatusBadge` and a link to the detail page at `/hr/me/compensation/:id`. Loading and error states are shown with skeletons and alert UI.

## Who it's for

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

* HR must have generated and sent a total compensation statement for you.
* Statements will only appear once their status is `sent` or `acknowledged`.

## Steps

1. Go to **HR → My HR → My Compensation** (or navigate to `/hr/me/compensation`).
2. Optionally filter by **Year** to narrow results.
3. Select a statement card to view the full detail breakdown.

## Key concepts

| Concept                      | Meaning                                                                          |
| ---------------------------- | -------------------------------------------------------------------------------- |
| Total compensation statement | A document summarizing all components of compensation (SME: confirm components). |
| Sent                         | HR has distributed the statement to the employee.                                |
| Acknowledged                 | Employee has reviewed and confirmed receipt of the statement.                    |

## Related

<Columns cols={2}>
  <Card title="Human Resources" icon="users" href="/hr/overview">
    Human Resources 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/hr/self-service-routes.tsx
  * src/cores/hr/self-service/pages/MyCompensationPage.tsx
  * src/cores/hr/compensation/hooks/useMyCompensationStatement.ts
  * src/cores/hr/compensation/components/TotalCompensationStatementStatusBadge.tsx
</Accordion>
