How to find list of users who have both Fulfiller and Business stakeholder role types?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-06-2025 01:32 AM - edited 05-06-2025 07:06 AM
As per ServiceNow, if a user has both Fulfiller (FF) and Business stakeholder (BSH) role, ServiceNow will consider that user as under Fulfiller role by default.
Problem:
In our instance, there are many users who have both FF and BSH roles. Many of those users were supposed to have just BSH only but somehow got FF role as well.
Now we need to clean them up.
Question - How do we create a report to find all those users who have both FF and BSH role types?
PS - We have few groups where the group role contains sn_incident_write. Once a user is added to this group, the user would also get sn_incident_read as part of inheritance.
On other hand, we have group with role sn_incident_read.
Now when I created a report, above user falls under both FF and BSH reports due to license inheritance.
So we are not able to create a report at all to find out the list of users having both those roles.
How are you tracking this scenario?
Note - FF role means list of all licensable roles
- Labels:
-
Architect
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-06-2025 05:43 AM - edited 05-06-2025 05:44 AM
Navigate to the User roles table:
https://YOUR-INSTANCE.service-now.com/sys_user_has_role_list.do
And there you can review what user has what roles, you can also filter or group the results to get what you need.
/* If my response wasn’t a total disaster ↙️ ⭐ drop a Kudos or Accept as Solution ✅ ↘️ Cheers! */
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-06-2025 06:00 AM - edited 05-06-2025 06:01 AM
Hi @Suggy
I think we need to have database view to find out all users who has both Business Stakeholder and ITIL role.
One report: User who has Business Stakeholder Role.
Report Link: https://instancename.service-now.com/sys_user_has_role_list.do?sysparm_query=role.nameLIKEbusiness_s...
Second Report: User who has ITIL Role.
Report Link: https://instancename.service-now.com/sys_user_has_role_list.do?sysparm_query=role.name%3Ditil&syspar...
Now create database view to merge these two reports based on matching user that will give you all users who have both roles.
Regards,
Abhijit
ServiceNow MVP

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-06-2025 06:15 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-06-2025 07:03 AM
@Abhijit4 @SumanthDosapati its not just itil and business_stakeholder role.
When I say ITIL, we need to consider all the fulfiller roles
Is it still possible via DB views or scripts?