first off it is completely unsupported to query the tables directly. use only the supported views.
A Microsoft SQL Server view is a virtual table whose contents are based on the result from a SQL query.
learn.microsoft.com
Exactly what error do you get?
I used Other query but I have so problem when I run on sql or SCCM report panel
I didnt get LAst Used date and Launch Count but I all point added query and my design, can you say me what I wrong wrote
SELECT
SYS.Name0 AS 'Hostname',
COL.Name AS 'Collection',
SYS.User_Name0 AS 'User',
ARP.DisplayName0 AS 'Software Name',
ARP.Version0 AS 'Version',
ARP.Publisher0 AS 'Publisher',
ARP.InstallDate0 AS 'Install Date',
APP.LastUsedTime0 AS 'Last Used Date',
APP.LaunchCount0 AS 'Launch Count'
FROM
v_R_System SYS
LEFT JOIN
v_FullCollectionMembership FCM ON SYS.ResourceID = FCM.ResourceID
LEFT JOIN
v_Collection COL ON FCM.CollectionID = COL.CollectionID
LEFT JOIN
v_GS_ADD_REMOVE_PROGRAMS_64 ARM ON SYS.ResourceID = ARM.ResourceID
LEFT JOIN
v_Add_Remove_Programs ARP ON SYS.ResourceID = ARP.ResourceID
LEFT JOIN
v_GS_CCM_RECENTLY_USED_APPS APP ON SYS.ResourceID = APP.ResourceID
WHERE
ARP.DisplayName0 LIKE '%Adobe Acrobat%Pro'
AND FCM.CollectionID = @DeviceCollectionID
AND NOT (ARP.DisplayName0 LIKE '%Update%' OR ARP.DisplayName0 LIKE '%Service Pack%' OR ARP.DisplayName0 LIKE '%.NET%')
ORDER BY
SYS.Name0;