Community FAQ
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
harringg
Champion Sweeper
I'm looking for assistance on a report that would look like this:

AssetName
Relations: Date
Relations: Type
Relations: Asset/User
Relations: Comment

Where there is a line for each related item a given asset would have

PC01
11/15/2013
Documented by
Office 2013 License 01
Room 123

PC01
11/15/2013
Documented by
Adobe Acrobat XI License 01
Room 123

PC02
11/15/2013
Documented by
Adobe Acrobat XI License 02
Room 456
2 REPLIES 2
harringg
Champion Sweeper
Works great. Thanks!

That opens up a whole new level of asset management record keeping.
Hemoco
Lansweeper Alumni
try this

select * from (SELECT tblAssets.AssetID, tblAssets.AssetName,
tsysAssetRelationTypes.RelationTypeIcon10 AS icon,tblAssetRelations.StartDate,
tsysAssetRelationTypes.Name AS RelationType, tblAssets_1.AssetName AS [Asset-User],
tblAssetRelations.Comments
FROM tblAssets INNER JOIN
tblAssetRelations ON tblAssets.AssetID = tblAssetRelations.ParentAssetID INNER JOIN
tsysAssetRelationTypes ON
tblAssetRelations.Type = tsysAssetRelationTypes.RelationTypeID INNER JOIN
tblAssets tblAssets_1 ON tblAssetRelations.ChildAssetID = tblAssets_1.AssetID
UNION
SELECT tblAssets.AssetID, tblAssets.AssetName, tsysAssetRelationTypes.RelationTypeIcon10 AS icon, tblAssetUserRelations.StartDate,
tsysAssetRelationTypes.Name AS RelationType, tblADusers.Name AS [Asset-User], tblAssetUserRelations.Comments
FROM tblAssets INNER JOIN
tblAssetUserRelations ON tblAssets.AssetID = tblAssetUserRelations.AssetID INNER JOIN
tblADusers ON tblAssetUserRelations.Username = tblADusers.Username AND
tblAssetUserRelations.Userdomain = tblADusers.Userdomain INNER JOIN
tsysAssetRelationTypes ON tblAssetUserRelations.Type = tsysAssetRelationTypes.RelationTypeID) as tbl
order by AssetName, relationtype

Archive

This board contains archived posts from the retired Lansweeper Forum and Insiders Community.

New to Lansweeper?

Try Lansweeper For Free

Experience Lansweeper with your own data.
Sign up now for a 14-day free trial.

Try Now