Skip to main content

Report Structure

SectionTitleContent
1Executive SummarySystem-level RPN counts with dashboard cards
2Module-Level BreakdownPer-subsystem DFMEA statistics table
3High-Priority Action ItemsUnacceptable risks requiring attention

RPN Classification Tiers

Failure modes are classified by their RPN value (Severity x Occurrence x Detection) into three tiers:
TierRPN RangeColorMeaning
LowRPN <= 10Green (#4CAF50)Acceptable risk level
Medium10 < RPN <= 30Orange (#FF9800)Requires monitoring
HighRPN > 30Red (#F44336)Unacceptable — action required
UnclassifiedN/AGrayMissing severity, occurrence, or detection values
RPN thresholds are hardcoded in the Velocity template: lowRpnThreshold = 10 and mediumRpnThreshold = 30. Changing these values requires template modification.

Executive Summary (Section 1)

The executive summary displays styled dashboard cards showing pre-mitigation and post-mitigation RPN distribution: diagram Conditional alert boxes follow the summary cards:
Alert TypeCondition
Danger boxHigh-RPN failure modes remain post-mitigation
Warning boxMedium-RPN failure modes exist post-mitigation
Success boxAll failure modes at acceptable levels

Module-Level Breakdown (Section 2)

Dynamic Module Discovery

The report auto-discovers DFMEA modules by querying:
project.id AND space.id:Risks AND type:riskSpecification
AND moduleName:(DFMEA* FMEA*)
This pattern matches all DFMEA and FMEA documents in the Risks space without requiring a hardcoded list.

Breakdown Table

Each discovered module generates a row with:
ColumnDescription
Module TitleLinked directly to the risksheet view for that module
SubsystemRead from the document subsystem custom field (defaults to “System”)
Total Failure ModesCount of type:failureMode items in the module
Pre-MitigationLow / Medium / High / N/A RPN distribution
Post-MitigationLow / Medium / High / N/A RPN distribution
Risksheet deep links are constructed as:
/polarion/#/project/{projectId}/risksheet?document=Risks/{encodedModuleName}

Example Documents

DocumentTypeContent
FMEA-SYS-001System DFMEA34 failure modes (system-level)
DFMEA-SUB-001 through DFMEA-SUB-006Subsystem DFMEA~80 failure modes (subsystem-level)

High-Priority Action Items (Section 3)

This section appears only when sysPostHighCount > 0 (i.e., failure modes with post-mitigation RPN > 30 exist). It lists all modules containing high-RPN failure modes with recommended actions:
ColumnContent
ModuleLink to the DFMEA module in risksheet
High-RPN CountNumber of failure modes above threshold
Recommended ActionImplement additional controls or redesign

Data Sources

QueryPurpose
type:failureModeAll failure modes across the project
type:riskSpecification AND space.id:Risks AND moduleName:(DFMEA* FMEA*)DFMEA/FMEA documents
type:systemElement AND elementType.KEY:subsystemSubsystem elements for labeling
Key fields consumed:
FieldTypePurpose
premitigationRPNIntegerPre-control RPN value
postmitigationRPNIntegerPost-control RPN value
fmSeverityEnum (1-5)Failure mode severity
subsystemDocument fieldSubsystem identifier

Technical Details

PropertyValue
Page location.polarion/pages/spaces/_default/System DFMEA Report/page.xml
Template typeVelocity script
Sidebar shortcutwiki/System DFMEA Report
CSS scope.dfmea-summary-report
Module assignmentCompares module references (fmModuleRef.equals(moduleRef))