05-06-2025
10:33 AM
- last edited on
05-06-2025
05:06 PM
by
frsierra
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!
Solved! Go to Solution.
05-08-2025 08:52 AM
I've created a query that will show me who those users are. Thanks so much for your help!!!
05-06-2025 06:18 PM
There's an API which might help though I've not tried it (https://pubhub.devnetcloud.com/media/enterprise-chat-and-email/docs/guides/interaction-api-developer-guide/da/d1e/classadministration_1_1pages_1_1user_1_1_user_search_page.html#v12_admin_users_search_page) I would look at the EGPL_USER and EGICM_USER tables though.
david
05-07-2025 04:07 AM
Can you not use the list of users from UCCE?
05-07-2025 08:44 AM
Yes, that'll work, thank you!!
05-07-2025 08:53 AM
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?
05-07-2025 09:35 AM
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
05-07-2025 11:53 AM
I just tried it. It won't work. I'll remove those users from UCCE. Thanks everyone for your help!
05-07-2025 04:43 PM
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.
05-08-2025 08:52 AM
I've created a query that will show me who those users are. Thanks so much for your help!!!
05-08-2025 09:00 AM
05-08-2025 10:00 AM
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.
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide