I've created some Custom Fields to fill in backup related data and a Report for every department.
1. I don't get any Linux Servers in this Report. When i open the Asset Groups every Asset is shown.
2. Is it possible to re-arrange the custom fields in the Asset Overview. Like moving the data from Custom13 to Custom8 for every Asset
Are there any plans to integrate Custom Drop-downs or Checkboxes?
Select Top 1000000 web40repIPLocationlist.IPLocation As [IP Location],
tblAssetCustom.AssetID,
tblAssets.AssetUnique,
Case When tblAssetCustom.Model Like '%virtual%' Then 'Virtual' Else 'Physical'
End As Hardware,
tblAssets.IPAddress As [IP Address],
tblOperatingsystem.Caption As [Operating System],
tblAssetCustom.Custom12 As [Responsible for backup],
tblAssetCustom.Custom6 As [Backup to Disk],
tblAssetCustom.Custom7 As [Retention Time],
tblAssetCustom.Custom8 As [Backup to Tape]
From tblAssetCustom
Inner Join tblAssets On tblAssetCustom.AssetID = tblAssets.AssetID
Inner Join tsysOS On tblAssets.OScode = tsysOS.OScode
Inner Join tblOperatingsystem
On tblAssets.AssetID = tblOperatingsystem.AssetID
Inner Join tblAssetGroupLink On tblAssets.AssetID = tblAssetGroupLink.AssetID
Inner Join tblAssetGroups On tblAssetGroups.AssetGroupID =
tblAssetGroupLink.AssetGroupID
Inner Join web40repIPLocationlist On web40repIPLocationlist.AssetID =
tblAssets.AssetID
Where tblAssetGroups.AssetGroup Like '%All Server%'
Order By [IP Address]