Lansweeper wrote:
The report you posted is already a version 5.0 report. The "upgrade_" tables are specifically used to convert 4.2 reports to 5.0.
Select Top 1000000 upgrade_tsysDevicetypes.itemtypeicon10 As icon,
upgrade_tblCustDevices.Displayname As [Device name],
upgrade_tblCustDevices.Model,
upgrade_tblCustDevices.Vendor,
upgrade_tblCustDevices.Location,
upgrade_tblCustDevices.DeviceKey,
upgrade_tblCustDevices.PurchaseDate,
upgrade_tblCustDevices.Serialnumber,
upgrade_tblCustDevices.Contact,
upgrade_tblCustDevices.Devicetype,
upgrade_tblCustDevices.Mac,
upgrade_tblCustDevices.IPAddress
From upgrade_tblCustDevices
Inner Join upgrade_tsysDevicetypes On upgrade_tsysDevicetypes.itemtype =
upgrade_tblCustDevices.Devicetype
Where upgrade_tblCustDevices.Devicetype = '217'
Order By upgrade_tblCustDevices.Location
I've seen several recent posts about this same topic.
My question is I want to produce this report, but using tblAssestCustom.Custom11 (12 and 13) and I don't see a way to link the upgrade_tblCustDevices to the tblAssetCustom to include those columns.