Video Screencast Help
Search Video Help Close Back
to help
New in the Rewards Catalog: Vouchers for "Symantec Technical Specialist" and "Symantec Certified Specialist" exams.

Associating Users with a Department

Updated: 23 May 2010 | 2 comments
pwilson's picture
0 0 Votes
Login to vote

How do i Associate Users with a Department on the Notification Server?

Comments

jharings's picture
19
May
2009
0 Votes 0
Login to vote

Are you importing active directory data?

If so, is the department data in active directory? If not, you could import your departments from a data source, using the connector solution. After that, you could setup a resource association between the users and the departments (again this step would be easier with the data pre-populated in AD).

Jim Harings
HP Enterprise Services
1st Rule of Connect Club: Mark the post that helped you the most as a 'solution'. 2nd Rule of Connect Club:You must talk about Connect club.

Mike.Langford's picture
22
May
2009
0 Votes 0
Login to vote

If you are looking for th data in the database.....

I'm not sure if this is what you are looking for, but the Inv_AeX_Ac_Identification table and the Inv_AeX_EU_Contact_Detail table can be used like this if all you are looking to do is ti them together from existing data:

Select Name,
[Last Logon User],
Department
from Inv_Aex_Ac_Identification i
Left Join Inv_Aex_EU_Contact_Detail cd
on i._ResourceGuid = cd._ResourceGuid

If you have the Asset Management modules intalled, another good place is to look in vUser as well.

Hope that helps.