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

# Process

> Detail view for a single auto-discovered business process, showing health status, trend data, linked rules, and linked workflows.

Business process detail page at `/settings/automation/processes/:processId` displaying health information, trend charts, and linked automation components for a single discovered process.

## Overview

The Process detail page renders health gauges, a health breakdown panel, an impact graph, a trend chart, and two linked-object panels (rules and workflows) for a single business process identified by `processId`. The page uses `useBusinessProcess(processId)` to fetch the record. If the process is not found or an error occurs an error state is displayed. The breadcrumb is set dynamically to the process name. Navigate back to the catalog via `/settings/automation/processes`.

## Who it's for

**Required permission:** `pf.business_processes.view`

## Before you start

* You must have the `pf.business_processes.view` permission.
* A valid `processId` must exist; the URL is typically reached by clicking a process row in the Business Process Catalog.

## Steps

1. From the Business Process Catalog (`/settings/automation/processes`), click a process row.
2. Review the health gauge and breakdown to understand the current process state.
3. Inspect the trend chart for health changes over time.
4. Review linked rules and workflows associated with this process.
5. Use the **Back** button or breadcrumb to return to the catalog.

## Key concepts

**Health status** — A computed value for the process (e.g., `healthy`, `degraded`, `critical`). SME: confirm exact definitions.

**ProcessImpactGraph** — A visualization of how this process relates to other platform components. SME: confirm scope.

**Linked rules / workflows** — References to automation rules and workflows that drive or monitor this process.

## Related

<Columns cols={2}>
  <Card title="Platform Foundation" icon="layer-group" href="/pf/overview">
    Platform Foundation 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/platform.tsx
  * src/platform/automation/pages/BusinessProcessDetailPage.tsx
  * src/platform/automation/hooks/useBusinessProcess.ts
  * src/platform/automation/types.ts
</Accordion>
