SLA report based on Incident number for last one month
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2024 08:52 PM
Hi,
I want to create a SLA report where it shows Actual elapsed percentage for a particular incident over a period of month.
X axis needs to incident number and Y axis needs to be actual elapsed percentage, also I want group by option based on assigned to, priority and assignment group.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2024 09:45 PM
Hi @JeevithaD
Hope below mentioned articles will help you out.
https://www.servicenow.com/community/itsm-forum/slas-and-reporting/m-p/685879
Thanks.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2024 09:58 PM
Hello,
To create an SLA report in ServiceNow that shows the actual elapsed percentage for a particular incident over a month with an X-axis of incident numbers and a Y-axis of actual elapsed percentage, and the ability to group by assigned to, priority, and assignment group, you can follow these steps:
Step 1: Create a New Report
-
Navigate to Reports:
- In the application navigator, type "Reports" and click on "View / Run" under "Reports".
-
Create a New Report:
- Click on the "Create a report" button.
Step 2: Select the Data Source
- Choose the Table:
- Select the
task_sla
table, which contains the SLA data.
- Select the
Step 3: Configure the Report
-
Set the Report Name and Description:
- Provide a name for your report, such as "Incident SLA Elapsed Percentage Report".
-
Filter the Data:
- Set up the filter conditions to include only SLAs related to Incidents and within the last month:
- Table:
task_sla
- Conditions:
Task type
isIncident
Start time
isLast month
(You can set this using the date filter options)SLA Stage
isIn Progress
(or any other relevant stage)
- Table:
- Set up the filter conditions to include only SLAs related to Incidents and within the last month:
Step 4: Configure the Visualization
-
Select the Visualization Type:
- Choose the "Bar Chart" visualization.
-
Configure the X-Axis:
- Set the X-axis to be the
Incident Number
(task.number
).
- Set the X-axis to be the
-
Configure the Y-Axis:
- Set the Y-axis to be the
Actual elapsed percentage
(percentage
).
- Set the Y-axis to be the
Step 5: Group and Aggregate Data
- Group By:
- Set the "Group By" options to:
Assigned to
Priority
Assignment group
- Set the "Group By" options to:
Step 6: Add Additional Fields (Optional)
- Select Additional Fields to Display:
- Add any additional fields you want to display in the report such as
Incident Number
,Assigned to
,Priority
,Assignment group
, etc.
- Add any additional fields you want to display in the report such as
Step 7: Save and Run the Report
-
Save the Report:
- Click on the "Save" button to save your report configuration.
-
Run the Report:
- Click on the "Run" button to generate the report.
Regards,
Vaishnavi Lathkar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2024 10:31 PM
Hi,
Step 2: Select the Data Source
Is this data source or table? If its data source should i need to create new one?