try to execute this code
create view web30repallportables as SELECT TOP 100 PERCENT dbo.tblComputers.Computername AS Computer, dbo.tblOperatingsystem.Description, dbo.tblComputerSystemProduct.Vendor,
dbo.tblComputerSystemProduct.Name, dbo.tblComputers.Lastseen AS [Last scanned], dbo.tblComputerSystemProduct.Lastchanged
FROM dbo.tblComputers LEFT OUTER JOIN
dbo.tblComputerSystemProduct ON dbo.tblComputers.Computername = dbo.tblComputerSystemProduct.Computername LEFT OUTER JOIN
dbo.tblOperatingsystem ON dbo.tblComputers.Computername = dbo.tblOperatingsystem.Computername
WHERE (dbo.tblComputers.Computername IN
(SELECT tblportablebattery.computername
FROM tblportablebattery))
ORDER BY dbo.tblComputers.Computername