Skip to Content
Knowledge is Power, so learn 🎉
Tutorial15 03 2025ServiceNow Incident Management Demystified: From Ticket Creation to Resolution (and Everything In Between!)

ServiceNow Incident Management Demystified: From Ticket Creation to Resolution (and Everything In Between!)

Welcome to the world of ServiceNow Incident Management! If you’re new to ServiceNow, or perhaps just struggling to wrap your head around how incidents are handled, you’ve come to the right place. This guide will walk you through the entire incident lifecycle, from initial creation to final resolution, explaining each step along the way. Get ready to demystify Incident Management!

What is Incident Management?

At its core, Incident Management is a structured process designed to restore normal service operation as quickly as possible to minimize the impact on business operations. When something breaks, malfunctions, or otherwise disrupts a service, Incident Management kicks in to get things back on track.

Think of it this way: you’re working, and suddenly your email stops working. That’s an incident. Incident Management is the process your IT department (or support team) uses to get your email back up and running.

Key Concepts:

Before diving into the process, let’s define some important terms:

  • Incident: An unplanned interruption to or reduction in the quality of an IT service.
  • Service: A valuable set of functions delivered to a customer (e.g., email, network connectivity, printing).
  • Priority: A categorization that helps determine how urgently an incident should be addressed. Determined based on impact and urgency.
  • Impact: The measure of the business effect if a service is unavailable or degraded.
  • Urgency: How quickly a resolution is needed.
  • Assignment Group: A team responsible for resolving specific types of incidents.
  • Resolution: The action taken to restore the service.
  • Root Cause Analysis (RCA): The process of identifying the underlying cause of an incident after it’s been resolved.
  • Knowledge Base: A repository of articles, FAQs, and other resources that can help users resolve common issues.

The Incident Management Lifecycle: A Step-by-Step Guide

The incident management lifecycle can be broken down into several key stages:

  1. Incident Creation/Logging:
  2. Categorization:
  3. Prioritization:
  4. Assignment:
  5. Investigation and Diagnosis:
  6. Resolution and Recovery:
  7. Closure:

Let’s explore each stage in detail:

1. Incident Creation/Logging

This is where it all begins. An incident is created when a user (or even a system) reports a problem. Incidents can be created in several ways:

  • Service Portal: This is a self-service interface where users can submit requests and report incidents.
  • Email: Users can send emails to a designated address, which ServiceNow can automatically convert into incidents.
  • Phone Call: Support staff can create incidents manually based on phone calls.
  • Direct Creation within ServiceNow: Support staff can directly create new incidents within the ServiceNow platform.
  • Automated Monitoring Tools: Systems can automatically create incidents if they detect an issue.

Practical Example:

Imagine Sarah is working on a crucial presentation, and her Microsoft Word application keeps crashing. She goes to the Service Portal, clicks on “Report an Issue,” and fills out the following form:

  • Category: Application
  • Subcategory: Microsoft Word
  • Short Description: Word keeps crashing when saving.
  • Description: Every time I try to save my presentation in Word, the application crashes. I’ve tried restarting it, but the problem persists. This is preventing me from completing my work.

This information is then submitted, creating a new incident record in ServiceNow.

Code Example (Illustrative - ServiceNow uses JavaScript and other specific languages):

While you don’t directly “code” an incident, you can use ServiceNow’s scripting capabilities to automate incident creation based on certain events. Here’s a conceptual example of how you might use a business rule to create an incident if a server’s CPU usage exceeds a threshold:

// Business Rule: On Server CPU Usage Exceeds Threshold (function executeRule(current, previous /*null when async*/) { // Check if CPU usage exceeds threshold (e.g., 90%) if (current.cpu_usage > 90) { // Create a new incident var incident = new GlideRecord('incident'); incident.short_description = 'High CPU Usage on Server: ' + current.name; incident.description = 'CPU usage has exceeded 90% on server ' + current.name + '. Please investigate.'; incident.cmdb_ci = current.sys_id; // Link to the server configuration item incident.priority = 1; // High priority incident.impact = 2; // Significant impact incident.urgency = 2; // Needs immediate attention incident.category = 'Hardware'; incident.subcategory = 'Server'; incident.assignment_group = 'Server Support'; incident.insert(); // Create the incident record } })(current, previous);

Note: This is a simplified example and requires proper configuration and scripting knowledge within the ServiceNow platform.

2. Categorization

Once an incident is logged, it needs to be categorized. Categorization helps route the incident to the appropriate team and provides valuable data for reporting and analysis. Common categories and subcategories might include:

  • Category: Hardware, Software, Network, Database, Security
  • Subcategory: Desktop, Laptop, Server, Email, VPN, Wireless

Practical Example:

The incident Sarah created is automatically categorized as “Application” based on her selection in the Service Portal. The system might then further classify it as “Microsoft Word” based on the subcategory.

3. Prioritization

Not all incidents are created equal. Prioritization determines how quickly an incident needs to be addressed based on its impact and urgency. ServiceNow typically uses a priority matrix to calculate the priority based on these two factors.

A simple priority matrix might look like this:

ImpactUrgencyPriority
HighHigh1 - Critical
HighMedium2 - High
MediumHigh2 - High
HighLow3 - Moderate
MediumMedium3 - Moderate
LowHigh3 - Moderate
MediumLow4 - Low
LowMedium4 - Low
LowLow5 - Planning

Practical Example:

Sarah’s incident has a “High” impact (she can’t complete her presentation) and a “High” urgency (the presentation is due tomorrow). Based on the priority matrix, her incident is assigned a “Priority 1 - Critical.”

4. Assignment

Based on the category, subcategory, and priority, the incident is assigned to the appropriate assignment group. This ensures that the incident is handled by the team with the expertise to resolve it.

Practical Example:

Because Sarah’s incident involves Microsoft Word, it’s automatically assigned to the “Desktop Support” assignment group. A member of the Desktop Support team will then be assigned the incident to work on.

5. Investigation and Diagnosis

The assigned technician investigates the incident to understand the root cause. This may involve:

  • Reviewing the incident details and any related knowledge base articles.
  • Gathering additional information from the user.
  • Troubleshooting the problem using diagnostic tools.
  • Searching for similar incidents in the past.

Practical Example:

The Desktop Support technician reviews Sarah’s incident and notices that several other users have reported similar issues with Word recently. They suspect a recent software update may be the culprit. They use remote access to connect to Sarah’s computer and examine the Word application logs.

6. Resolution and Recovery

Once the root cause is identified, the technician implements a solution to restore the service. This could involve:

  • Applying a software patch.
  • Reconfiguring a system.
  • Replacing a faulty component.
  • Providing a workaround.

After applying the fix, the technician verifies that the service is restored to normal.

Practical Example:

The Desktop Support technician confirms that the recent Word update is causing the crashes. They uninstall the update from Sarah’s computer and confirm that Word is now working correctly. They then contact Sarah to verify that she can save her presentation without any issues.

7. Closure

Once the incident is resolved and the user confirms that the service is restored, the incident can be closed. Closing the incident involves:

  • Documenting the resolution steps.
  • Updating the incident record with relevant information.
  • Confirming the closure with the user.

Practical Example:

Sarah confirms to the technician that Word is now working as expected. The technician updates the incident record with the details of the resolution (uninstalling the Word update) and closes the incident.

Beyond the Basics: Key Considerations

  • Service Level Agreements (SLAs): SLAs define the agreed-upon response times and resolution times for incidents. ServiceNow can track SLA compliance and notify technicians when incidents are approaching SLA breaches.
  • Knowledge Management: Documenting common issues and their resolutions in a knowledge base can help speed up the resolution process and empower users to resolve their own issues.
  • Root Cause Analysis (RCA): For major incidents, it’s crucial to perform a root cause analysis to identify the underlying cause and prevent future occurrences.
  • Automation: ServiceNow provides powerful automation capabilities that can streamline the incident management process, such as automatic incident creation, routing, and resolution.
  • Reporting and Analytics: ServiceNow offers robust reporting and analytics capabilities that can help identify trends, track performance, and improve the overall incident management process.

Conclusion

Incident Management is a critical process for any organization that relies on IT services. By understanding the incident lifecycle and the key concepts involved, you can effectively manage incidents, minimize disruptions, and ensure that services are restored quickly. Remember the key steps: Logging, Categorization, Prioritization, Assignment, Investigation, Resolution, and Closure. By implementing best practices and leveraging ServiceNow’s powerful features, you can optimize your incident management process and improve the overall user experience.

Last updated on