Skip to content

Commit cb95bb5

Browse files
authored
Create README.md
Incident Auto-Tagging Automatically detects keywords like email, VPN, or server from the incident’s short description and description. Creates a corresponding Label (if not already present) and a Label Entry linked to that incident to fulfill the requirement of auto tagging. Benefit: Helps automatically tag incidents with relevant keywords, improving searchability, categorization, and visibility across the platform. Type: Before Business Rule Table: Incident [incident]
1 parent 7708c3a commit cb95bb5

File tree

1 file changed

+33
-0
lines changed
  • Server-Side Components/Business Rules/Auto tag incident

1 file changed

+33
-0
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
📘 Overview
2+
3+
This feature automatically scans newly created or updated Incidents for specific keywords (like Email, VPN, Server) and attaches structured Labels automatically wheneven any incident gets created.
4+
It leverages ServiceNow’s native label and label_entry tables to organize incidents into searchable categories — improving visibility, reporting, and problem trend analysis.
5+
6+
🎯 Problem Statement
7+
8+
Manual tagging of incidents is inconsistent and time-consuming. As a result, identifying recurring issues or related incidents becomes difficult.
9+
The Incident Auto-Tagging solution automates this process, ensuring every incident containing common keywords is automatically labeled and linked for faster triage and analytics.
10+
11+
💡 Solution Approach
12+
13+
A Business Rule runs on the Incident table (Before Insert) to:
14+
15+
Detect defined keywords from Short Description and Description.
16+
17+
Create or reuse a Label (label table) for each keyword.
18+
19+
Create a Label Entry (label_entry table) linking the Label to the Incident with details such as title, URL, table, etc.
20+
21+
Prevent duplicates by verifying existing entries before insertion.
22+
23+
🧩 Benefits
24+
25+
🕒 Time saving: Minimizes time as no manual tagging is needed
26+
27+
🔍 Quick Search: Filter incidents by keyword-based labels.
28+
29+
⚡ Faster Resolution: Group recurring issues for faster response.
30+
31+
📊 Analytics Ready: Enables trend and problem management reporting.
32+
33+
🧠 Reusable Logic: Extendable to Change Requests or Catalog Items.

0 commit comments

Comments
 (0)