Currently, if I export a query result to Excel and include the Assignee column, the names show up as "Bob Henderson", "Carol Zheng", etc. Is there a way to get "bobh@company.com", "carolz@company.com" to be exported instead?
Thanks!
Hi Vince,
Do you have access to the database? If you do, you can generate the query directly there and export the email addresses in a CSV. For instance:
copy (SELECT u.user_name, u.display_name, u.email_address FROM cwd_user u ORDER BY user_name) to '/tmp/users.csv' csv header;
This query will export the usernames, full names and email for every user in your instance.
Hope this helps.
Cheers,
Clarissa.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.