Skip to content

Commit a676645

Browse files
authored
Add README for Enhance Incident with Linked Problem Business Rule
1 parent e4dcd11 commit a676645

File tree

1 file changed

+17
-0
lines changed
  • Server-Side Components/Business Rules/EnhanceIncidentWithProblem

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Enhance Incident Description with Linked Problem Statement
2+
3+
## Overview
4+
This ServiceNow Business Rule enhances Incident records by automatically appending the short description of a linked Problem record. It improves visibility and context for support teams working on related incidents.
5+
6+
## Features
7+
- Triggered when a Problem ID is newly linked or changed on an Incident.
8+
- Fetches the Problem's short description and number.
9+
- Appends the Problem Statement to both the Incident's short description and description fields.
10+
- Includes general error handling to ensure stability.
11+
12+
## Business Rule Configuration
13+
- Table: `incident`
14+
- When to Run: `before insert` and `before update`
15+
- Condition:
16+
```javascript
17+
current.problem_id.changes() || !previous

0 commit comments

Comments
 (0)