MdKnightR
Member
- Messages
- 20
- Solutions
- 1
- Reaction score
- 8
- Points
- 3
I'm running Configuration Manager 2107 and I'm trying to create a new report with Report Builder 3.0 that will pull Dell warranty information from our endpoints. I am by no means well-versed in SQL, so it's like feeling around in the dark.
Each time I try to add the query to the dataset, I get this:

The queries that I've found online are about 10 years old, so maybe the object name has changed? Someone had mentioned that "KBSYS." is now invalid. I tried removing it and get the same message. Here's a query I've tried:
Any help would be much appreciated.
Each time I try to add the query to the dataset, I get this:

The queries that I've found online are about 10 years old, so maybe the object name has changed? Someone had mentioned that "KBSYS." is now invalid. I tried removing it and get the same message. Here's a query I've tried:
SELECT DISTINCT M.NAME AS MACHINE_NAME, M.CS_MODEL AS MODEL, DA.SERVICE_TAG, DW.SERVICE_LEVEL_DESCRIPTION, DW.SERVICE_PROVIDER, DW.END_DATE AS EXPIRATION_DATE
FROM KBSYS.DELL_WARRANTY DW
JOIN KBSYS.DELL_ASSET DA ON (DW.SERVICE_TAG = DA.SERVICE_TAG)
JOIN MACHINE M ON (M.BIOS_SERIAL_NUMBER = DA.PARENT_SERVICE_TAG OR M.BIOS_SERIAL_NUMBER = DA.SERVICE_TAG)
WHERE M.CS_MANUFACTURER LIKE '%dell%'
AND M.BIOS_SERIAL_NUMBER!=''
AND DA.DISABLED != 1
ORDER BY MACHINE_NAME, EXPIRATION_DATE DESC, DW.SERVICE_LEVEL_DESCRIPTION
Any help would be much appreciated.