cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
404
Views
8
Helpful
10
Replies

Print a list of users in ECE 12.6.1.3

leigh.stavinoha
Level 1
Level 1

Does anyone know how to print out a list of users in ECE?  I need to compare them with a list from our other call center programs and cannot see where to do that?

Thank you!

1 Accepted Solution

Accepted Solutions

I've created a query that will show me who those users are. Thanks so much for your help!!!

View solution in original post

10 Replies 10

Can you not use the list of users from UCCE?

Yes, that'll work, thank you!!

One more question please.  Do you know.  If a user in UCCE does NOT have an ECE skill group assigned to them, can they still log into ECE and receive emails?

I've never tried it, but I can't see how they would take an email if they don't have a skill that handles email.

david

I just tried it.  It won't work.  I'll remove those users from UCCE.  Thanks everyone for your help!

If you're just trying to get a simple list of users, if you don't want to delete those non-ECE ones, you could always do something like use a different description for those agents, and then just query for the ones that don't have "Non_ECE" or whatever in the description.

I've created a query that will show me who those users are. Thanks so much for your help!!!

How about sharing the query to help the world?

david

I have this query that will Identify all users that have the skillgroup for ECE:

 

select b.EnterpriseName as 'Agent Name', c.EnterpriseName as 'SkillGroup' from t_Skill_Group_Member a, t_Agent b, t_Skill_Group c
where a.SkillGroupSkillTargetID In ('7112','7113','7114','7115','7116','7117','7124','7125','7126','7127','7128','7129','7130','7189','7622','7909','8250','8576','8657')
and a.AgentSkillTargetID = b.SkillTargetID and a.SkillGroupSkillTargetID = c.SkillTargetID
order by AgentSkillTargetID

 

For NOW, I'm going through each one and comparing them to our AD and removing them manually.  Then when we remove everyone from ECE later this year, I'll run this query again and mass remove everyone in ECE.