Registered member login:
Register Now
Altirigos » Altiris Administrators » Reports » Need Report help asap

» Current Poll
Do you leave the Aclient enabled?
YES - 83.05%
196 Votes
NO - 16.95%
40 Votes
Total Votes: 236
You may not vote on this poll.
» Stats
Members: 9,948
Threads: 12,158
Posts: 56,984
Top Poster: Nick (4,991)
Welcome our newest member, rmerrill
» Online Users: 33
0 members and 33 guests
No Members online
Most users online at once 294, 06-30-2007 at 12:24 PM.
» July 2010
S M T W T F S
27282930 1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31
Reply
Old 12-12-2007, 09:27 AM   #1 (permalink)
 
vondarius's Avatar
 
Status: Junior Altiris Admin
Join Date: 08-29-2007
Location: Atlanta, GA
Posts: 14


Need Report help asap

I need to build a report that shows only laptops, but includes machine name, primary user, subnet, laptop model, and all add/remove programs listings for each respective machine. Is this possible? Has anyone already created such a report?
vondarius is offline   Reply With Quote
Old 12-12-2007, 09:31 AM   #2 (permalink)
 
Nick's Avatar
 
Status: Altiris Architect (Site Founder)
Join Date: 01-01-2005
Location: RDU, North Carolina, USA
Posts: 4,991


That report would require at least two levels.

The first level would list everything but software. The second level drilldown would show you a list of software for the system you selected in level 1.

You may want to take a look at the "Count of Computers by Form Factor" as a start.
__________________
Scire potentia est (knowledge is power)
Nick is offline   Reply With Quote
Old 12-12-2007, 09:40 AM   #3 (permalink)
 
vondarius's Avatar
 
Status: Junior Altiris Admin
Join Date: 08-29-2007
Location: Atlanta, GA
Posts: 14


Need Report help asap

Quote:
Originally Posted by Nick View Post
That report would require at least two levels.

The first level would list everything but software. The second level drilldown would show you a list of software for the system you selected in level 1.

You may want to take a look at the "Count of Computers by Form Factor" as a start.
Thanks for the prompt reply Nick. Is it possible to have all this displayed in a single result report vs. choosing machines individually?
vondarius is offline   Reply With Quote
Old 12-12-2007, 09:46 AM   #4 (permalink)
 
Nick's Avatar
 
Status: Altiris Architect (Site Founder)
Join Date: 01-01-2005
Location: RDU, North Carolina, USA
Posts: 4,991


It may be possible but it wouldn't be pretty. It would look something like

computer1 software1
computer1 software2
computer1 software3
computer2 software1
computer2 software2
computer2 software3

Is there a reason you need all laptops with all the software each has? When I have been asked for a report like this in the past I would do a bit more digging and find that the requestor was looking for specific criteria. It would be much easier to generate a report of laptops that have a specific application or applications rather than a list of laptops with all the software on each... not to mention it would be a REALLY long report.
__________________
Scire potentia est (knowledge is power)
Nick is offline   Reply With Quote
Old 12-12-2007, 09:55 AM   #5 (permalink)
 
vondarius's Avatar
 
Status: Junior Altiris Admin
Join Date: 08-29-2007
Location: Atlanta, GA
Posts: 14


Need Report help asap

Quote:
Originally Posted by Nick View Post
It may be possible but it wouldn't be pretty. It would look something like

computer1 software1
computer1 software2
computer1 software3
computer2 software1
computer2 software2
computer2 software3

Is there a reason you need all laptops with all the software each has? When I have been asked for a report like this in the past I would do a bit more digging and find that the requestor was looking for specific criteria. It would be much easier to generate a report of laptops that have a specific application or applications rather than a list of laptops with all the software on each... not to mention it would be a REALLY long report.
Yeah, I know it won't be aesthically pleasing, but you know how these manager types are about custom reports. He wants to use such a report to get a bird's eye view of the Laptop machines and their associated apps for an upcoming hardware refresh for our Regional office users. I'm currently able to do a report that resembles what you have above, but I don't know how to add subnet, and model type.

"SELECT
T0.[Name] AS 'Name',
T0.[Domain] AS 'Domain',
T2.[User] AS 'Primary User',
T2.[Month] AS 'Primary User Month',
T1.[Name] AS 'App Name',
T1.[Version] AS 'Product Ver'
FROM [Inv_AeX_AC_Identification] T0 LEFT OUTER JOIN [Inv_AeX_OS_Add_Remove_Programs] T1 ON T0.[_ResourceGuid] = T1.[_ResourceGuid] INNER JOIN [Inv_AeX_AC_Primary_User] T2 ON T0.[_ResourceGuid] = T2.[_ResourceGuid]
WHERE T2.[Month] = 'November'
AND T0.[_ResourceGuid] in (
Select ResourceGuid
From CollectionMembership
Where CollectionGuid = '%Collection%'
)
AND NOT T1.[Name] LIKE 'security update%'
AND NOT T1.[Name] LIKE '%hotfix%'
AND NOT T1.[Name] LIKE 'Altiris%'
AND NOT T1.[Name] LIKE 'Update for%'
AND NOT T1.[Name] LIKE 'Adobe Download%'
AND NOT T1.[Name] LIKE 'Adobe SVG%'
order by T0.[Name], T1.[Name]"

Bear in mind someone did this one for me. I am a NOOB.
vondarius is offline   Reply With Quote
Old 12-12-2007, 10:28 AM   #6 (permalink)
 
Nick's Avatar
 
Status: Altiris Architect (Site Founder)
Join Date: 01-01-2005
Location: RDU, North Carolina, USA
Posts: 4,991


"SELECT
T0.[Name] AS 'Name',
T0.[Domain] AS 'Domain',
T3.[Subnet] AS 'Subnet',
T2.[User] AS 'Primary User',
T2.[Month] AS 'Primary User Month',
T1.[Name] AS 'App Name',
T1.[Version] AS 'Product Ver'
FROM
[Inv_AeX_AC_Identification] T0 LEFT OUTER JOIN [Inv_AeX_OS_Add_Remove_Programs] T1 ON T0.[_ResourceGuid] = T1.[_ResourceGuid]
INNER JOIN [Inv_AeX_AC_Primary_User] T2 ON T0.[_ResourceGuid] = T2.[_ResourceGuid]
INNER JOIN [Inv_AeX_AC_TCPIP] T3 ON T0.[_ResourceGuid] = T3.[_ResourceGuid]
WHERE T2.[Month] = 'November'
AND T0.[_ResourceGuid] in (
Select ResourceGuid
From CollectionMembership
Where CollectionGuid = '%Collection%'
)
AND NOT T1.[Name] LIKE 'security update%'
AND NOT T1.[Name] LIKE '%hotfix%'
AND NOT T1.[Name] LIKE 'Altiris%'
AND NOT T1.[Name] LIKE 'Update for%'
AND NOT T1.[Name] LIKE 'Adobe Download%'
AND NOT T1.[Name] LIKE 'Adobe SVG%'
order by T0.[Name], T1.[Name]"

That will add subnet for you. I didn't look into which table has the system type.
__________________
Scire potentia est (knowledge is power)
Nick is offline   Reply With Quote
Old 12-12-2007, 10:38 AM   #7 (permalink)
 
vondarius's Avatar
 
Status: Junior Altiris Admin
Join Date: 08-29-2007
Location: Atlanta, GA
Posts: 14


Quote:
Originally Posted by Nick View Post
"SELECT
T0.[Name] AS 'Name',
T0.[Domain] AS 'Domain',
T3.[Subnet] AS 'Subnet',
T2.[User] AS 'Primary User',
T2.[Month] AS 'Primary User Month',
T1.[Name] AS 'App Name',
T1.[Version] AS 'Product Ver'
FROM
[Inv_AeX_AC_Identification] T0 LEFT OUTER JOIN [Inv_AeX_OS_Add_Remove_Programs] T1 ON T0.[_ResourceGuid] = T1.[_ResourceGuid]
INNER JOIN [Inv_AeX_AC_Primary_User] T2 ON T0.[_ResourceGuid] = T2.[_ResourceGuid]
INNER JOIN [Inv_AeX_AC_TCPIP] T3 ON T0.[_ResourceGuid] = T3.[_ResourceGuid]
WHERE T2.[Month] = 'November'
AND T0.[_ResourceGuid] in (
Select ResourceGuid
From CollectionMembership
Where CollectionGuid = '%Collection%'
)
AND NOT T1.[Name] LIKE 'security update%'
AND NOT T1.[Name] LIKE '%hotfix%'
AND NOT T1.[Name] LIKE 'Altiris%'
AND NOT T1.[Name] LIKE 'Update for%'
AND NOT T1.[Name] LIKE 'Adobe Download%'
AND NOT T1.[Name] LIKE 'Adobe SVG%'
order by T0.[Name], T1.[Name]"

That will add subnet for you. I didn't look into which table has the system type.
Dude, you are the man, thx. a bunch. The system type can be found in INV_AEX_HW_Serial_Number.
vondarius is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Powered by vBadvanced CMPS v3.0 RC2

All times are GMT -4. The time now is 05:50 AM.


Powered by vBulletin® Version 3.7.4
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0
vB.Sponsors
Altirigos