The computer manager should be scanned, but I don't think this information is listed on individual computer or user pages. You can run the computer manager report below though, by following
these instructions.
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Domain,
tblAssets.IPAddress,
tblAssets.Firstseen,
tblAssets.Lastseen,
tblAssets.Lasttried,
tsysOS.Image As icon,
tblADusers.Username As Manager
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysOS On tsysOS.OScode = tblAssets.OScode
Inner Join tblADComputers On tblAssets.AssetID = tblADComputers.AssetID
Inner Join tblADusers
On tblADusers.ADObjectID = tblADComputers.ManagerADObjectId
Where tblAssetCustom.State = 1
Order By Manager,
tblAssets.AssetName