Skip to main content

Report Purpose

The FMEA Coverage Report answers critical safety compliance questions:
  • What is the total count of failure modes analyzed?
  • Which design requirements and safety-classified characteristics lack corresponding failure mode analysis?
  • What is the post-mitigation action priority distribution across all FMEAs?
  • Which system elements have incomplete FMEA documentation?
  • What FMEA coverage gaps exist relative to ISO 26262 or AIAG-VDA requirements?
This report is essential for:
  • ISO 26262 functional safety compliance audits (Part 4 requirements traceability)
  • AIAG-VDA FMEA Handbook compliance verification
  • Design review gate decisions (FMEA completeness criteria)
  • Traceability evidence for safety-critical characteristics

Report Structure

The FMEA Coverage Report is implemented as a Velocity dashboard page that queries the Polarion work item database and renders multiple coverage analysis sections.
Report SectionContentMetrics
Executive SummaryOverall FMEA coverage statisticsCoverage %, gap count
DFMEA CoverageDesign FMEA analysis completenessItems analyzed vs. total
PFMEA CoverageProcess FMEA analysis completenessItems analyzed vs. total
Coverage by System ElementBreakdown by subsystem/componentPer-element coverage
Coverage by Process StepBreakdown by manufacturing stepPer-step coverage
Gap AnalysisUncovered items requiring attentionPriority ranking

Key Metrics and KPIs

Design FMEA (DFMEA) Metrics

MetricQueryMeaning
Total Failure Modestype:failureModeCount of all design failure modes across system/subsystem/component hierarchy
DFMEA by System Elementtype:failureMode AND systemElement:*Failure modes grouped by parent system element to identify incomplete analysis
Action Priority Distributiontype:failureMode AND preAPValue:*Breakdown of H/M/L action priority ratings to assess risk concentration
Post-Mitigation Coveragetype:failureMode AND (postAPValue:* OR postmitigationAP:*)Percentage of failure modes with post-mitigation actions completed
High Priority Actionstype:failureMode AND preAPValue:"H"Count of High priority failure modes requiring immediate risk control

Process FMEA (PFMEA) Metrics

MetricQueryMeaning
Total Process Failure Modestype:processFailureModeCount of manufacturing/process-level failure modes
PFMEA by Process Steptype:processFailureMode AND parentProcess:*Process failure modes grouped by parent process step
RPN Distributiontype:processFailureMode AND (riskPriority:* OR rpnValue:*)Risk Priority Number distribution to identify high-risk process steps
Control Plan Item Linkagetype:controlPlanItem AND linkedWorkItems:mitigates=PF*Percentage of control plan items linked to process failure modes
High RPN Actionstype:processFailureMode AND rpnValue:>=300Process failures with RPN ≥ 300 requiring special process controls (SPC)
Design requirements classified as Safety-Critical (SC) or Safety-Significant (SS) characteristics must have corresponding failure mode analysis. The report highlights any SC/CC design requirements without linked failure modes as compliance violations under ISO 26262 and IATF 16949.

Coverage Gap Analysis

Design FMEA Gaps

The report identifies the following gap categories:
Gap TypeDescriptionQuery PatternISO 26262 Impact
Uncovered Design ReqDesign requirement with no linked failure modestype:desReq AND safetyClassification:SC AND NOT linkedWorkItems:assesses=FM*Part 5 §7.4.2 (Design FMEA mandatory for safety-related functions)
Uncovered CharacteristicCharacteristic with safetyClassification but no failure mode analysistype:characteristic AND (sccc:SC OR sccc:CC) AND NOT linkedWorkItems:assesses=FM*Part 4 §5.7 (SC characteristics require FMEA)
Uncovered FunctionFunction allocated to safety-critical system element without FMEAtype:function AND linkedWorkItems:allocatedTo=SE* AND NOT linkedWorkItems:assesses=FM*Part 5 requirements traceability
Incomplete Post-MitigationFailure mode without post-mitigation rating after risk controltype:failureMode AND NOT (postmitigationAP:* OR postAPValue:*)Part 4 §8.3.2 (Post-mitigation verification required)
Missing Risk ControlHigh/Medium priority failure mode without linked risk controltype:failureMode AND (preAPValue:"H" OR preAPValue:"M") AND NOT linkedWorkItems:mitigates=RC*Part 4 §6.3.2 (Risk control mandatory for ASIL B+)

Process FMEA Gaps

Gap TypeDescriptionQuery PatternIATF/APQP Impact
Uncovered Process StepProcess step without corresponding failure mode analysistype:processStep AND NOT linkedWorkItems:hasFailureModes=PF*IATF 16949 Process FMEA requirement
Uncovered Process CharacteristicProcess characteristic without control plan itemtype:processStep AND linkedWorkItems:hasCharacteristics=PC* AND NOT linkedWorkItems:controlledBy=CP*APQP Control Plan completeness
Missing Detection MethodProcess failure mode without defined detection strategytype:processFailureMode AND NOT detection:*ISO 9001 SPC requirement
High RPN — No ActionProcess failure mode with RPN ≥ 300 without assigned risk controltype:processFailureMode AND rpnValue:>=300 AND NOT linkedWorkItems:mitigates=RC*PPAP quality requirement
Click any coverage bar gap query link to drill down into the specific work items needing analysis. This generates a Lucene search result showing all uncovered items, which you can then process using bulk editing in the Risks space.

Configuration Properties

Dashboard Page Properties

PropertyTypeDefaultDescription
spaceString"Risks"Polarion space containing FMEA and coverage reports
page_titleString"FMEA Coverage Report"Display title of the dashboard page
report_dateVelocity Expression$dateAuto-populated report generation timestamp
project_prefixString"TA"Project prefix used in Lucene queries (e.g., type:failureMode AND id:TA*)
show_dfmea_sectionBooleantrueEnable/disable Design FMEA coverage section
show_pfmea_sectionBooleantrueEnable/disable Process FMEA coverage section
show_gap_analysisBooleantrueEnable/disable gap analysis tables and drill-down links

KPI Card Configuration

PropertyTypeExampleDescription
kpi_labelString"Total DFMEA Failure Modes"Display label for KPI card
kpi_queryLucene Query"type:failureMode"Work item query for KPI computation
kpi_colorCSS Color"#1565c0" (blue)Card background color (hex or CSS variable)
kpi_iconIcon ClassMaterial Design icon for visual emphasis
kpi_threshold_warningNumber80KPI value threshold for yellow warning state
kpi_threshold_criticalNumber100KPI value threshold for red critical state
Example KPI card in Velocity:
#set( $dfmea_count = $queryFactory.executeQuery("type:failureMode").size() )
#nxKpiCard("Total DFMEA Failure Modes" $dfmea_count "blue")

Coverage Bar Configuration

PropertyTypeExampleDescription
coverage_labelString"Design Requirements → Failure Modes"Coverage dimension label
coverage_numerator_queryLucene Query"type:desReq AND linkedWorkItems:assesses=FM*"Work items WITH coverage (covered set)
coverage_denominator_queryLucene Query"type:desReq AND safetyClassification:SC"Total work items requiring coverage (total set)
coverage_gap_queryLucene Query"type:desReq AND safetyClassification:SC AND NOT linkedWorkItems:assesses=FM*"Gap drill-down query (what’s missing)
coverage_threshold_greenNumber100Coverage % for green (complete) state
coverage_threshold_yellowNumber80Coverage % for yellow (incomplete) state
Example coverage bar in Velocity:
#nxLinkCoverage( "type:desReq AND safetyClassification:SC" "failureMode" "assesses" "outgoing" )
#set( $gap_query = "type:desReq AND safetyClassification:SC AND NOT linkedWorkItems:assesses=FM*" )
#nxCoverageBar( $covered_count $total_count "Design Requirements" $gap_query )

Report Sections in Detail

Design FMEA Coverage By System Element

This section breaks down DFMEA coverage by system hierarchy level:
LevelEntityCoverage Metric
SystemSystem Element% of elements with DFMEA analysis
SubsystemSubsystem Function% of functions with failure modes
ComponentComponent Characteristic% of characteristics with controls
Each system element row shows:
  • Count: Total failure modes for that element
  • Action Priority Distribution: H/M/L breakdown
  • Post-Mitigation Coverage %: Percentage with post-AP assigned
  • Risk Controls Linked: Count of mitigating risk controls
  • Gap Count: Design requirements or characteristics without FMEA

Process FMEA Coverage By Process Step

This section tracks manufacturing process FMEA completeness:
LevelEntityCoverage Metric
ProcessProcess Step% of steps with PFMEA analysis
CharacteristicProcess Characteristic% of characteristics with controls
ControlControl Plan Item% of items with reaction plans

Action Priority and RPN Distribution

The report displays histograms of action priority ratings to identify risk concentration: Design FMEA Action Priority Distribution:
PriorityCount%Interpretation
H (High)5220%Immediate action required; high safety impact
M (Medium)15660%Planned action during design phase
L (Low)5220%Accept risk or mitigate via testing/controls
Pending00%Unassigned action priority (gap)
Process FMEA RPN Distribution:
RPN RangeCountRisk LevelControl Type
RPN ≥ 3003CriticalMandatory SPC
150–3008HighEnhanced SPC or Inspection
50–1505MediumRoutine Process Control
< 500LowAccept or Audit
The FMEA Coverage Report connects to other TestAuto2 documentation:

Report Limitations and Known Issues

On projects with >500 failure modes, the FMEA Coverage Report may take 10–15 seconds to render due to Lucene query complexity. Consider filtering by system element or process step for faster drill-down analysis.
The coverage percentage for post-mitigation ratings reflects the snapshot at report generation time. If risk controls are still in draft status, the post-mitigation field may not be auto-populated until the risk control work item transitions to “Complete” status.
Process FMEA uses RPN (Severity × Occurrence × Detection) while Design FMEA uses Action Priority (H/M/L) per AIAG-VDA 2019. These metrics are not directly comparable and should be evaluated independently.

See Also