Hello,
I created a report that lists all assets who have an assignment "used by" attached to them.
This report lists the computers and the user.
I wanted to add some more information about the computer so I can easily check everything there.
Things I'm missing from this report are:
PC Age, OS, Disk Size, RAM, Processor, Serial number, Model and IP Addess.
How can I add all this info to this report??
This is what I have:
Select Top 1000000 tblAssets.AssetID,
tblAssetUserRelations.Username,
tblAssets.AssetName,
tsysAssetTypes.AssetTypeIcon10 As icon
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Inner Join tblAssetUserRelations On tblAssets.AssetID =
tblAssetUserRelations.AssetID
Where tblAssetUserRelations.Type = 12 And tblAssetCustom.State = 1
Order By tblAssetUserRelations.Username