Greetings. I have an all asset report almost where I need it but I need a few tweaks that I can't figure out.
I need the following items added to my report.
On the monitors that are listed in this report I want them to tie back to the computer they are associated with so that I can see the "IP Locations" and "Username" for the monitor. The Computer they report through should have this information.
The other item I need to see on this report is the "Asset Location" which is set by the "Thumbtack" location field.
Here is my SQL
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tsysAssetTypes.AssetTypename As [Asset Type],
tblAssets.Username,
tblAssetCustom.Model,
tblAssetCustom.Manufacturer,
tblAssets.IPAddress As [IP address],
tsysIPLocations.IPLocation As [IP location],
tblState.Statename As State,
tblAssets.Lastseen,
tblAssetCustom.PurchaseDate As [Purchase Date],
tblAssetCustom.Warrantydate As [Warranty Date],
tblAssetCustom.Contact,
tblAssetCustom.Serialnumber,
tblAssetCustom.Custom1 As Asset#,
tblAssetCustom.Custom2 As [Deploy Date],
Case When tblAssetCustom.PreventCleanup = 1 Then 'yes' Else 'no'
End As [not affected by cleanup options],
tsysAssetTypes.AssetTypeIcon10 As icon
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Left Join tsysOS On tblAssets.OScode = tsysOS.OScode
Left Join tsysIPLocations
On tblAssets.IPNumeric Between tsysIPLocations.StartIP And
tsysIPLocations.EndIP
Left Join tblADComputers On tblAssets.AssetID = tblADComputers.AssetID
Inner Join tblState On tblState.State = tblAssetCustom.State
Order By tblAssets.AssetName