I would like some help creating a report to include manually added assets (Not scanned). We have created a report with all of the criteria we want but, are unable to include any assets that were manually added and not scanned on the network. The manual assets have been updated to include the criteria below (tblAssetCustom.Department) as well as added to the appropriate Asset Groups. The manual assets may have any or all of the following fields:
State (active or non-active)
Asset Type (Windows, Apple Mac, Desktop, Laptop, or Unknown)
Assetname (unique name given to each manual asset)
Serial (unique S/N given to each manual asset)
Location
Building
Department
Asset groups
Our current report:
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblADComputers.Description As [AD Description],
tblAssets.Username As [Last User],
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssetCustom.Model,
tblOperatingsystem.Caption As [Operating System],
tblAssetCustom.PurchaseDate,
tblAssets.IPAddress,
tblAssets.Lastseen,
tblAssetCustom.Building,
tblAssetCustom.Location,
tblAssetCustom.Department,
tblAssetCustom.Custom4 As [Department Code],
tblAssetGroups.AssetGroup
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Inner Join tblAssetGroupLink On tblAssets.AssetID = tblAssetGroupLink.AssetID
Inner Join tblAssetGroups On tblAssetGroups.AssetGroupID =
tblAssetGroupLink.AssetGroupID
Inner Join tblADComputers On tblAssets.AssetID = tblADComputers.AssetID
Inner Join tblOperatingsystem
On tblAssets.AssetID = tblOperatingsystem.AssetID
Where tblAssetCustom.Department Like '%Football%' And
(tblAssetGroups.AssetGroup = 'Desktop' Or tblAssetGroups.AssetGroup =
'Mobile' Or tblAssetGroups.AssetGroup = 'Mobile Plus' Or
tblAssetGroups.AssetGroup = 'Performance' Or
tblAssetGroups.AssetGroup = 'Non-PP') And tblAssetCustom.State = 1
Order By tblAssets.AssetName