Hello, I'm new to LS and I'm running the trial version right now (want to buy it...BIG TIME!).
I've modified the built in report which searches for assets for with a particular amount of RAM. The report I have gives me All Assets (computers/servers) with exactly 2GB, this is the code:
================================================================================
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetUnique,
tblAssets.Domain,
tblAssets.Description,
tsysOS.OSname,
tblAssets.Memory,
tblAssetCustom.Model,
tblAssets.Lastseen,
tsysOS.Image As icon
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysOS On tblAssets.OScode = tsysOS.OScode
Where tblAssets.Memory = '2048' And tblAssetCustom.State = 1
Order By tblAssets.AssetName
================================================================================
I want to modify the report so the IP Location of the asset is also displayed in the results. Can someone kindly assist?