Which report are you referring to? If you are referring to the "Vmware: less than 10% partition free" one, please try the SQL query below instead. (We are aware that the built-in SQL is not compatible with all Lansweeper installations. We'll fix this in an update.)
Select Top 1000000 tblVmwareDisk.AssetID,
tblAssets.AssetName,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblVmwareDisk.Name As PartitionName,
Ceiling(tblVmwareDisk.TotalSpace / 1024 / 1024) As SizeMB,
Ceiling(tblVmwareDisk.FreeSpace / 1024 / 1024) As FreeMB,
tblVmwareDisk.Url,
Ceiling(tblVmwareDisk.FreeSpace / (Case tblVmwareDisk.TotalSpace When 0 Then 1
Else tblVmwareDisk.TotalSpace End) * 100) As FreePCT
From tblVmwareDisk
Inner Join tblAssets On tblVmwareDisk.AssetID = tblAssets.AssetID
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tblAssets.Assettype = tsysAssetTypes.AssetType
Where Ceiling(tblVmwareDisk.FreeSpace / (Case tblVmwareDisk.TotalSpace
When 0 Then 1 Else tblVmwareDisk.TotalSpace
End) * 100) < 20 And tblAssetCustom.State = 1
Order By tblAssets.AssetName