> ## Documentation Index
> Fetch the complete documentation index at: https://learn.nextedy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Risksheet

export const SUPPORT_TICKET_URL = "https://support.nextedy.com/support/tickets/new";

export const SUPPORT_PORTAL_URL = "https://support.nextedy.com";

export const LastReviewed = ({date}) => {
  if (!date) return null;
  const formatted = new Date(`${date}T00:00:00Z`).toLocaleDateString("en-US", {
    year: "numeric",
    month: "long",
    day: "numeric",
    timeZone: "UTC"
  });
  return <p className="mt-10 text-sm text-gray-400 dark:text-zinc-500 not-prose">
      Last reviewed on {formatted}
    </p>;
};

Welcome to the Nextedy RISKSHEET documentation. Risksheet is a risk analysis app for Siemens Polarion ALM that provides FMEA, HARA, TARA, STRIDE, and CVSS risk analysis workflows directly within Polarion LiveDoc documents. This documentation covers everything from installation to advanced configuration.

## Quick Navigation

<Columns cols={3}>
  <Card title="Getting Started" icon="rocket" href="/risksheet/getting-started/index">
    Install Risksheet, evaluate the product, and create your first risk analysis document with step-by-step tutorials.
  </Card>

  <Card title="Concepts" icon="lightbulb" href="/risksheet/concepts/index">
    Understand the architecture, data model, configuration system, and traceability concepts behind Risksheet.
  </Card>

  <Card title="How-To Guides" icon="file" href="/risksheet/guides/index">
    Task-oriented guides for column configuration, risk management, export, styling, and integration.
  </Card>

  <Card title="Reference" icon="file" href="/risksheet/reference/index">
    Technical reference for configuration properties, column types, formulas, styling, and API endpoints.
  </Card>

  <Card title="FAQ" icon="circle-question" href="/risksheet/faq/index">
    Answers to common questions about features, configuration, licensing, performance, and migration.
  </Card>

  <Card title="Troubleshooting" icon="file" href="/risksheet/troubleshooting/index">
    Resolve save failures, rendering errors, export issues, permission problems, and other common errors.
  </Card>
</Columns>

## Key Features

* **FMEA, HARA, TARA, and STRIDE analysis** embedded directly in Polarion LiveDoc documents
* **Configurable column layouts** with formulas, conditional formatting, and validation rules
* **Risk severity/occurrence/detection scales** with configurable parameters and RPN calculation
* **Hierarchical levels** with cell merging for failure mode, cause, and effect structures
* **Export to Excel and PDF** with formatted risk tables and custom scripts
* **Upstream and downstream traceability** linking requirements to risk items and mitigation tasks
* **Saved views** for switching between different column visibility presets
* **Review workflows** including comment-based and approval-based review processes

## Documentation Structure

| Section                                             | Purpose                                    | Start Here                                                                            |
| --------------------------------------------------- | ------------------------------------------ | ------------------------------------------------------------------------------------- |
| [Getting Started](/risksheet/getting-started/index) | Learn by doing with step-by-step tutorials | [Installation](/risksheet/getting-started/installation)                               |
| [Concepts](/risksheet/concepts/index)               | Understand how Risksheet works             | [What is Risksheet?](/risksheet/concepts/what-is-risksheet)                           |
| [How-To Guides](/risksheet/guides/index)            | Accomplish specific configuration tasks    | [Column Configuration](/risksheet/guides/columns/index)                               |
| [Reference](/risksheet/reference/index)             | Look up properties, types, and syntax      | [Configuration Properties Index](/risksheet/reference/configuration/properties-index) |
| [FAQ](/risksheet/faq/index)                         | Find answers to common questions           | [General Questions](/risksheet/faq/general)                                           |
| [Troubleshooting](/risksheet/troubleshooting/index) | Resolve errors and issues                  | [Save Operation Failures](/risksheet/troubleshooting/save-failures)                   |

## Common Tasks

* [Install Risksheet](/risksheet/getting-started/installation) -- Set up the plugin on your Polarion server
* [Configure FMEA Workflows](/risksheet/guides/risk-management/fmea-configuration) -- Set up Failure Mode and Effects Analysis
* [Configure HARA Workflows](/risksheet/guides/risk-management/hara-configuration) -- Set up Hazard Analysis and Risk Assessment
* [Export to Excel](/risksheet/guides/export/excel-export) -- Generate formatted Excel exports of risk tables
* [Set Up Risk Matrices](/risksheet/guides/risk-management/risk-matrices) -- Configure severity and occurrence scales
* [Configure Calculated Columns](/risksheet/guides/columns/calculated-columns) -- Add RPN formulas and derived values

## Need help?

<Card title="Open a support ticket" icon="ticket" href={SUPPORT_TICKET_URL} cta="Open a ticket" arrow="true">
  Can't find the answer here? Open a ticket and the Nextedy support team will help you out.
</Card>

<LastReviewed date="2026-06-08" />
