
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-21-2011 05:21 AM
Hi,
Iam looking for a software report sorted as department wise..Kindly provide me the query to run because sql query i dont know..
Iam looking for a software report sorted as department wise..Kindly provide me the query to run because sql query i dont know..

Regards,
Srikanth08
Solved! Go to Solution.
Labels:
- Labels:
-
Report Center
1 ACCEPTED SOLUTION

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-24-2011 01:33 PM
Select tblADusers.Department, tblSoftware.softwareName,
tblSoftware.softwareVersion, tblSoftware.SoftwarePublisher,
Count(tblSoftware.SoftwareID) As Total
From tblComputers Inner Join
tblSoftware On tblComputers.Computername = tblSoftware.ComputerName Left Join
tblADusers On tblADusers.Username = tblComputers.Username And
tblADusers.Userdomain = tblComputers.Userdomain
Group By tblADusers.Department, tblSoftware.softwareName,
tblSoftware.softwareVersion, tblSoftware.SoftwarePublisher
Order By tblADusers.Department, tblSoftware.softwareName
5 REPLIES 5

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-24-2011 04:18 PM
It you add the user you cannot make the software total count or group by department.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-24-2011 02:19 PM
Hi,.
Thanks for the quote..it is showing only the data..there is no facility to see inside the software who is the user..can you provide that one also..so that it is useful for us to find the user..
Thanks for the quote..it is showing only the data..there is no facility to see inside the software who is the user..can you provide that one also..so that it is useful for us to find the user..
Regards,
Srikanth08

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-24-2011 01:33 PM
Select tblADusers.Department, tblSoftware.softwareName,
tblSoftware.softwareVersion, tblSoftware.SoftwarePublisher,
Count(tblSoftware.SoftwareID) As Total
From tblComputers Inner Join
tblSoftware On tblComputers.Computername = tblSoftware.ComputerName Left Join
tblADusers On tblADusers.Username = tblComputers.Username And
tblADusers.Userdomain = tblComputers.Userdomain
Group By tblADusers.Department, tblSoftware.softwareName,
tblSoftware.softwareVersion, tblSoftware.SoftwarePublisher
Order By tblADusers.Department, tblSoftware.softwareName

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-21-2011 08:57 AM
we need the department of last logged on user in that system..
so that we can segregate
so that we can segregate

Regards,
Srikanth08

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-21-2011 08:52 AM
Do you need the department of:
Last logged on user
Custom field
Active directory computer object
Last logged on user
Custom field
Active directory computer object
