Modifications to web console pages are on our customer wish-list, but we have no release date. Many pages have special functions and therefore can't be modified. In most cases you will be able to reach your goal through custom reports. The following example report lists assets together with their connected assets and a custom field of it.
Instructions for running reports can be found
here. If you are interested in building or modifying reports, we would recommend:
- Reviewing some SQL tutorials, as the Lansweeper report builder uses standard SQL queries.
This seems like a good tutorial.
- Updating to Lansweeper 5.2, if you haven't already. Lansweeper 5.2 includes a database dictionary, which is linked at the top of the report builder.
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.Lastseen,
tConnected.AssetName As [Connected asset],
tConnectedCustom.Custom1 As [Connected asset Custom1]
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Inner Join tblAssetRelations
On tblAssets.AssetID = tblAssetRelations.ParentAssetID
Left Join tblAssets tConnected On tConnected.AssetID =
tblAssetRelations.ChildAssetID
Left Join tblAssetCustom tConnectedCustom On tConnectedCustom.AssetID =
tConnected.AssetID
Inner Join tsysAssetRelationTypes On tsysAssetRelationTypes.RelationTypeID =
tblAssetRelations.Type
Where tsysAssetRelationTypes.Name = 'connected to' And tblAssetCustom.State = 1
Order By tblAssets.AssetName,
[Connected asset]