We've updated the ServiceNow Community Code of Conduct, adding guidelines around AI usage, professionalism, and content violations. Read more

Report Needed

anthonyharp
Kilo Explorer

I’m new to ServiceNow and I’m looking for help on generating a report to identifying which assignment groups existed and are enabled, and comparing that to the assignment groups that are actively being used.

 

any help will be gladly appreciated. 

Anthony

1 REPLY 1

vaishali231
Tera Guru

hey @anthonyharp 

Step 1: Identify All Active Assignment Groups

Table: sys_user_group

Filter:
Active is true

You can create a simple List Report:

  1. Navigate to Reports
  2. Create New
  3. Table: Group [sys_user_group]
  4. Condition: Active is true
  5. Add columns such as:

    • Name
    • Active

    • Manager
    • Type

This gives you all enabled Assignment Groups in the instance.

vaishali231_0-1772384492313.png

 

 

Step 2: Identify Assignment Groups Actively Used

Now identify which groups are actually referenced in task-based tables.

Common tables:

  • Incident
  • Problem
  • Change
  • Case
  • Any custom table that extends Task

Example using Incident:

Table: incident

Create a report:

  • Type: Bar
  • Filter: Assignment group is not empty
  • Group by: Assignment group
  • Aggregation: Count

This shows which groups are being used and how many records are assigned to each.

If you want broader coverage, repeat this on the Task table itself. Since Incident, Problem, Change extend Task, this often gives a consolidated view.

vaishali231_1-1772384492315.png

 

 

*************************************************************************************************************************************

If this response helps, please mark it as Accept as Solution and Helpful.

Doing so helps others in the community and encourages me to keep contributing.

Regards

Vaishali Singh