Incident Management — Common Cases
1. User Sees No Incidents
Check:
- Does the user have an operational permission:
INCIDENT_MANAGEMENT_VIEW,INCIDENT_MANAGEMENT_CREATE, orINCIDENT_MANAGEMENT_FULL_CONTROL.INCIDENT_MANAGEMENTonly enables the menu; it does not grant view access. - If the user only has create-level access, was the incident created by that user.
- Is the record inside the user's current Business Unit + Org access scope (view/full-control are limited by scope).
- Is the user on the Active or Closed tab; Closed only includes
ClosedandCancelled. - Are filters too narrow: date range, site, type, subtype, severity, status, attendee, account, creator, acknowledgement/signature requirement, search text.
Real-world example: A teacher opens the Incident menu but the list is empty. → Distinguish "no view permission" from "filters too narrow". → The user only has
INCIDENT_MANAGEMENT(menu only, no view grant) → add..._VIEWbefore records appear.
2. Cannot Edit Incident
Incidents are only editable in allowed statuses, commonly:
| Status | Edit? | Note |
|---|---|---|
Draft | Yes | Creator/create-level acts on their own record. |
Changes Requested | Yes | Edit based on reviewer comment, then submit again. |
Reopened | Yes by allowed actions | After reopen, edit/submit/cancel may be available. |
Submitted, Under Review, Approved, Sent To Customer, Closed | Usually no | Use workflow action instead of editing fields. |
If the UI does not show an action, check GetAllowedActions and permission level.
3. Manager Cannot Approve/Request Changes
Requires INCIDENT_MANAGEMENT_FULL_CONTROL (note: INCIDENT_MANAGEMENT only enables the menu, not governance) and a valid status:
Submitted: Start Review, Request Changes, Approve, Cancel.Under Review: Request Changes, Approve, Cancel.Approved: Send To Customer, Close.
Create-only users cannot perform governance actions for incidents created by other users.
Real-world example: A shift lead needs to approve an incident report submitted by a teacher. → Ensure only users with governance permission can approve/request changes. → Requires
INCIDENT_MANAGEMENT_FULL_CONTROLand statusSubmitted/Under Reviewbefore the action appears.
4. Sending to Customer Does Not Create Expected Acknowledgement
Check:
- Is the incident already
Approved. - Does recipient list contain valid contacts.
- Which contact is primary contact; only primary carries acknowledgement responsibility.
- Does the incident have
RequiresAcknowledgement/RequiresSignatureas expected. - Does a duplicate acknowledgement already exist for the contact/incident.
- If attaching latest document, does the incident have a valid generated document.
Real-world example: Sending an incident report to the family does not create an acknowledgement request. → Ensure the right person is asked to acknowledge. → Incident must be
Approvedand have a valid primary contact before acknowledgement is created for the primary contact.
5. Customer Cannot See Incident in Portal
Check:
- Customer is in the correct account.
FormAcknowledgementbelongs to that account.- Acknowledgement is not
NotificationOnly; notification-only does not appear in the actionable list. - Detail link passes the correct
ackId. - Generated document is attached to the correct acknowledgement/attendee document.
6. PDF Report Missing File or Attendee
Debug direction:
- Check generate PDF request: mode, attendeeRecordIds, internalOnly.
- Check whether
BuildPdfDatasetAsynccollects the correct attendee/body marker/acknowledgement. - If PDF attachment merge is needed, check whether the attachment is a PDF and eligible by scope.
- Check whether the generated document BlobName exists and can be downloaded.
7. Was Notification Sent?
In staff detail, view Notification History:
| Signal | Check |
|---|---|
| No job | Did the business action create a notification job; did the event/action run. |
| Job exists but no message | Worker Generator/Distributor and template/config. |
| Customer did not receive | Contact email/SMS, delivery channel, suppression/provider status. |
Acknowledgement is not Sent | Did the notification handler update acknowledgement after processing. |
| BU has no configured template | Worker must fall back to built-in default template, not skip/fail job. |
8. Description Does Not Prefill or Is Overwritten
Check:
- Has incident type been selected; Description only prefills when the field is empty and type is selected.
- Does the type have a saved template; if not ⇒ use built-in default.
- Has the user manually edited Description — once edited, the system does not auto-refresh when type/date/site/attendee changes.
- If raw tokens like
appear, that is a materialize bug; placeholders must resolve to readable text.
9. Generate PDF: Wrong Visibility / Content
- Uncheck Internal Use Only ⇒ always one PDF per attendee, customer-visible, does not ask combined/per-attendee.
- Check Internal Use Only ⇒ only then show the choice to combine into one report (default) or generate one PDF per attendee.
- Customer-visible PDF must not contain Created By, Internal Notes, attendee Description, or acknowledgements from another account.
Real-world example: An incident involves three children, and each family needs a copy without exposing the others. → Separate customer copies from the internal report. → Leave Internal Use Only unchecked → generate one customer-visible PDF per attendee, without internal notes or acknowledgements from another account.
10. Cannot Open Settings / Template
- Settings icon and settings API are only available to
INCIDENT_MANAGEMENT_FULL_CONTROL; other permissions are denied. - Saving a template writes blob
form-config-jsonand setsPrefillBlobNamefor the active version of that type, scoped by Business Unit.