Restricting the Select User Window
Is it possible to scope the Select User window so that it only filters on certain criteria, such as an OU?
I'm referring to the Select User window for the Affected User or Requestor field, not the Assigned To User field. I'm aware of the Global Operators Group, which is used for Assigned To and Primary Owner. Would like to know if there's a similar group for Affected User and Requestor, or if there's a Cireson solution that helps make this happen.
Thanks in advance!Best Answer
-
Brian_Wiest Customer Super IT Monkey ✭✭✭✭✭Portal
Click your name top right
Admin Settings
Settings Items
UserQuery
Update the logic.
Example I updated mine to make sure the affected user has an email address. (Stopping service accounts and security groups selection)
(DisplayName LIKE '%' + @Query + '%' OR UserName LIKE '%' + @Query + '%') AND EmailAddress1 IS NOT Null
5
Answers
Click your name top right
Admin Settings
Settings Items
UserQuery
Update the logic.
Example I updated mine to make sure the affected user has an email address. (Stopping service accounts and security groups selection)
(DisplayName LIKE '%' + @Query + '%' OR UserName LIKE '%' + @Query + '%') AND EmailAddress1 IS NOT Null
Can you please explain how i can configure the query that does it only view users which have a title
i tested already (and title is not '' ) or and title is not <> '')
Thank you
best regards
So you update to
(DisplayName LIKE '%' + @Query + '%' OR UserName LIKE '%' + @Query + '%') AND Title not like ''
WoW now it works what i supost to have,
Thank you very much
best regards