For servers we recommend using the built-in server warranty reports. Open
Reports and search for reports like "Server: Out of warranty". In order to list warranty details for other asset types, use a custom report like the following, filtering on
tsysAssettypes.Assettypename:
Select Top 1000000 tblAssetCustom.AssetID,
tblAssets.AssetUnique,
tblAssetCustom.Model,
tblAssetCustom.Serialnumber As [Identifying Number],
tblAssetCustom.PurchaseDate As [Purchase Date],
tblAssetCustom.Warrantydate As [Warranty Expiration]
From tblAssetCustom
Inner Join tblAssets On tblAssetCustom.AssetID = tblAssets.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Where tblAssetCustom.Warrantydate < GetDate() And tsysAssetTypes.AssetTypename
In ('switch', 'router') And tblAssetCustom.State = 1
Order By [Warranty Expiration] Desc