User Scoping Problems
Best Answers
-
carrie_medine Member Advanced IT Monkey ✭✭✭Hello Paul,
Please review this KB: https://support.cireson.com/KnowledgeBase/View/1275#/
Specifically the piece about: If a non-analyst user is scoped to Create On Behalf Of, they must have access to a Configuration Item group containing AD Users within an SCSM console role. By default, the out-of-box End User role does not have this permission.
Hopefully that helps,
Carrie
6 -
carrie_medine Member Advanced IT Monkey ✭✭✭This KB may be helpful in determining where the scoping needs tweaking: https://support.cireson.com/KnowledgeBase/View/35#/
The following query on your ServiceManagement db will show whether or not a user is scoped or unscoped for each type of object:
SELECT U.UserName,SU.IsConfigItemScoped,SU.IsWorkItemScoped,SU.IsServiceCatalogScoped
FROM ScopedUser SU
INNER JOIN CI$User U ON SU.UserId=U.Id
WHERE U.UserName='travis'
In the results the 0 means that the user is not scoped. 1 means that the user is scoped by something - a queue for work items, a group for configuration items, or a service catalog group for service catalog content.
5
Answers
Please review this KB: https://support.cireson.com/KnowledgeBase/View/1275#/
Specifically the piece about: If a non-analyst user is scoped to Create On Behalf Of, they must have access to a Configuration Item group containing AD Users within an SCSM console role. By default, the out-of-box End User role does not have this permission.
Hopefully that helps,
Carrie
The following query on your ServiceManagement db will show whether or not a user is scoped or unscoped for each type of object:
SELECT U.UserName,SU.IsConfigItemScoped,SU.IsWorkItemScoped,SU.IsServiceCatalogScoped
FROM ScopedUser SU
INNER JOIN CI$User U ON SU.UserId=U.Id
WHERE U.UserName='travis'
In the results the 0 means that the user is not scoped. 1 means that the user is scoped by something - a queue for work items, a group for configuration items, or a service catalog group for service catalog content.