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.

Computer Model to User Report

Updated: 07 Jul 2009 | 3 comments
lotsill's picture
0 0 Votes
Login to vote

The attached file creates an asset report for computer model to user and includes the serial number

Comments

vake_dhingra's picture
10
Oct
2008
0 Votes 0
Login to vote

Trouble with the SQL

Do I put this in report builder or use the SQL to build a collection?

lotsill's picture
10
Oct
2008
0 Votes 0
Login to vote

Download the file. Rename

Download the file. Rename the extension from "txt" to "xml". From the NS 6.0 console, select the report tab, right click the left pane and select import.

Steve Petrasek

rasmusse's picture
20
Nov
2008
0 Votes 0
Login to vote

Adjustment

Thanks for this report!

I made two adjustments to make it work at my site.
First thing was to add DISTINCT so serialnumber, second was to add '%Computer Model%' to the where statment. Full SQL-statement:

SELECT DISTINCT T1.[Serial Number] AS 'Serial Number', T1.[Computer Model] AS 'Computer Model', T0.[User] AS 'User'
FROM [Inv_AeX_AC_Primary_User] T0 INNER JOIN [Inv_AeX_HW_Serial_Number] T1 ON T0.[_ResourceGuid] = T1.[_ResourceGuid]
WHERE T1.[Computer Model] LIKE '%Computer Model%'