Does anyone know of a way to see which users have certain Custom Lists set as their default. I would like to delete old custom lists and I'm trying to find out who is still using them. Thanks!
I have one that shows me everyone that doesn't have the smart search as their default custom problem list that might be a starting point if you want that. I can send it to you and probably tweak it for you if needed. Thanks. Jen
That would be great. A starting point is more than I have so far 🙂
Can you email it to me? [email protected]
Thanks!
I have a series of SQL queries that you can start with. I haven't created a Crystal Report, but given the interest will do so. Contact me a [email protected].
I too am looking for something to aide in identifying users who don't have the smart list as their default. May I get my hands on that report as well, please and thank you!
Here is an Oracle query to show all users' Problem Custom List preference:
select u.firstname, u.lastname,u.status, p.prefname, p.prefvalue, q.description, l.abbrevname from ml.pref p, ml.usrinfo u, ml.locreg l, ml.qpicks q
where p.groupid = u.pvid and u.homelocation = l.locid and p.prefvalue = q.qpid
and p.prefname = 'ProbCustomList'