Control 3.4: Incident Reporting and Root Cause Analysis - Troubleshooting
This playbook provides troubleshooting guidance for Control 3.4.
Common Issues and Resolutions
Issue: Incidents Not Auto-Assigning
Symptoms: New incidents remain unassigned
Resolution:
- Check Power Automate flow is enabled
- Verify on-call assignment logic
- Confirm user accounts exist in lookup
- Check flow run history for errors
Issue: SLA Alerts Not Triggering
Symptoms: Overdue incidents not generating alerts
Resolution:
- Verify scheduled flow is running
- Check SLA threshold configuration
- Confirm email delivery settings
- Test with shorter SLA for validation
Issue: RCA Template Not Saving
Symptoms: Root cause analysis forms fail to save
Resolution:
- Check required field validation
- Verify user has Contribute permissions
- Ensure document library is not locked
- Check for character limit issues
Issue: Regulatory Notification Workflow Not Triggering
Symptoms: Incidents with regulatory impact not flagged
Resolution:
- Verify RegulatoryImpact field is set correctly
- Check notification workflow conditions
- Confirm compliance team distribution list
- Test workflow with manual trigger
Diagnostic Commands
# Check for open incidents past SLA
$openIncidents = Get-PnPListItem -List "AI Agent Incidents" -Query "<View><Query><Where><Neq><FieldRef Name='Status'/><Value Type='Text'>Closed</Value></Neq></Where></Query></View>"
foreach ($incident in $openIncidents) {
$hoursOpen = ((Get-Date) - [DateTime]$incident["ReportedDate"]).TotalHours
Write-Host "$($incident['IncidentID']): $([math]::Round($hoursOpen, 1)) hours open - $($incident['Severity'])"
}
# Check Power Automate flow status
Get-AdminFlow -EnvironmentName "Default" | Where-Object { $_.DisplayName -like "*Incident*" }
Escalation Path
| Issue Severity | Escalate To | Response Time |
|---|---|---|
| Critical incident stuck | CISO | Immediate |
| SLA system failure | IT Operations | 1 hour |
| Notification failures | Platform Admin | 4 hours |
| Reporting inaccuracies | AI Governance Lead | 24 hours |
Next Steps
- Portal Walkthrough - Manual configuration
- PowerShell Setup - Automation scripts
- Verification & Testing - Test procedures
Updated: January 2026 | Version: v1.2