Dear support,
Could you please help us with the report bellow? I want to insert the field "chassis" into it:
Select Top 1000000 tsysOS.Image As icon,
tblAssets.AssetID,
tsysOS.OSname,
tblAssets.AssetName,
tblAssets.Domain,
tblAssets.Username,
tblADusers.Department,
tblADObjects.sAMAccountName As Manager,
tblAssets.IPAddress,
tsysIPLocations.IPLocation,
tblADusers.OU,
tblADusers.Title
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysOS On tsysOS.OScode = tblAssets.OScode
Left Join tblADusers On tblADusers.Username = tblAssets.Username And
tblADusers.Userdomain = tblAssets.Userdomain
Left Join tblADObjects On
tblADObjects.ADObjectID = tblADusers.ManagerADObjectId
Inner Join tsysIPLocations On tsysIPLocations.LocationID =
tblAssets.LocationID
Where tsysOS.OSname Not Like 'win 2%' And tblAssetCustom.State = 1
Group By tsysOS.Image,
tblAssets.AssetID,
tsysOS.OSname,
tblAssets.AssetName,
tblAssets.Domain,
tblAssets.Username,
tblADusers.Department,
tblADObjects.sAMAccountName,
tblAssets.IPAddress,
tsysIPLocations.IPLocation,
tblADusers.OU,
tblADusers.Title
Order By tblAssets.Domain,
tblAssets.AssetName
Kind Regards,
Mateus Dias