Field "Create Request On Behalf Of:"
Best Answer
-
Brian_Wiest Customer Super IT Monkey ✭✭✭✭✭That is a direct pull from your User CI's.If you go into the console, configuration items, users.You will find those values.So you have to ask your self how are they getting there.Typically from a AD import.Now if that is "stuck" and will always come back on your import.I have the issue for duplicate on SCSM-Useragent accountsHow I get around thatPortal - Admin -settings itemsNear the bottom User QueryUpdate to filter those outI use(DisplayName LIKE '%' + @Query + '%' OR UserName LIKE '%' + @Query + '%') AND EmailAddress1 IS NOT NullIt insures I have affected users with emails so they get notification emails.How to test what query works for your likingin SQL management studioselect * from ServiceManagement.dbo.CI$User
Where (DisplayName LIKE '%' + @Query + '%' OR UserName LIKE '%' + @Query + '%') AND EmailAddress1 IS NOT NullReplace the @query with a value that would represent what you would type into the affected user box IE your last name. If the results are want you want update the settings and you are good to go after a cachebuilder restart.
8
Answers
Where (DisplayName LIKE '%' + @Query + '%' OR UserName LIKE '%' + @Query + '%') AND EmailAddress1 IS NOT Null