Hi
I want create SCCM report to get this data from Special collection:
1. Computer name
2. Computer Model
3. Computer serial number
4. Primary User
I have used SQL view to build this query:
I can not seem to create a parameter for the collection.
I have tried use this guide without success : https://prajwaldesai.com/how-to-add-collection-parameter-in-sccm-report/.
please help
thank you
I want create SCCM report to get this data from Special collection:
1. Computer name
2. Computer Model
3. Computer serial number
4. Primary User
I have used SQL view to build this query:
Code:
SELECT dbo.v_GS_COMPUTER_SYSTEM.Manufacturer0, dbo.v_GS_COMPUTER_SYSTEM.Model0, dbo.v_GS_COMPUTER_SYSTEM.Name0, dbo.v_GS_COMPUTER_SYSTEM.UserName0, dbo.v_GS_PC_BIOS.SerialNumber0,
dbo.v_Collections.CollectionName
FROM dbo.v_GS_COMPUTER_SYSTEM CROSS JOIN
dbo.v_GS_PC_BIOS CROSS JOIN
dbo.v_Collections
I can not seem to create a parameter for the collection.
I have tried use this guide without success : https://prajwaldesai.com/how-to-add-collection-parameter-in-sccm-report/.
please help
thank you