Summary
This article describes how to check if SCCM has collected the usage data that can be imported by FlexNet Manager Suite.
Discussion
If SCCM is one of the compliance sources to report data to FlexNet Manager Suite and if SCCM has been configured to collect usage information, FlexNet Manager Suite by default will import the application usage information from SCCM for the previous 3 months.
If a customer does not see the usage information in FlexNet Manager Suite, we will first want to find out if the usage information has been stored in SCCM. To find that out, you can run the following SQL query on the SCCM database:
SELECT * FROM MonthlyUsageSummary
If there are no data stored in this table, FlexNet Manager Suite will not able to import any usage data from SCCM. If there are data in this table, but it is more than 3 months old, by default FlexNet Manager Suite will not able to import this usage data.
If there is usage data that can be imported from SCCM to FlexNet Manager Suite, the usage data will be stored in FlexNet Manager Suite transit table "ImportedInstalledFileEvidenceUsage" within the FNMSCompliance database.
We can check this table by using the query below and replacing 'NameOfYourSCCMConnection' with the actual name of your SCCM connection
SELECT * FROM ImportedInstalledFileEvidenceUsage iife
JOIN ComplianceConnection cc on iife.ComplianceConnectionID =cc.ComplianceConnectionID
WHERE cc.ConnectionNameDisplayName = 'NameOfYourSCCMConnection'