The Community is now in read-only mode to prepare for the launch of the new Flexera Community. During this time, you will be unable to register, log in, or access customer resources. Click here for more information.
An incorrect device version can appear in the Last Reported Version column of the FlexNet Inventory Agent Status page if there are multiple records for the same device. Multiple records can occur for various reasons but often originate from data inconsistencies or inaccurate data cleanup.
To investigate this issue in a FlexNet Manager Suite system, you can review details in your compliance database and remove any outdated records for a device.
Use the query below to troubleshoot the information displayed on the FlexNet Inventory Status page (Discovery & Inventory > FlexNet Inventory Agent Status). This query provides the data that generates the information you see on the status page.
SELECT TOP 1 WITH TIES ist.ComplianceComputerID, ic.AgentVersion as 'VersionName', ist.InstallDate FROM dbo.InstalledSoftware AS ist INNER JOIN SoftwareTitle AS st ON st.SoftwareTitleID = ist.SoftwareTitleID LEFT OUTER JOIN dbo.ImportedComputer ic ON ist.ComplianceComputerID = ic.ComplianceComputerID WHERE st.FullName LIKE 'FlexNet Inventory %' AND ic.InventoryAgent = 'FlexNet Manager Suite'
You can adjust the query to locate records for a particular device name, as shown below. In this example, the query searches for agentmachine001.
SELECT ist.ComplianceComputerID, ic.ComputerName, ic.AgentVersion as 'VersionName', ist.InstallDate FROM dbo.InstalledSoftware AS ist INNER JOIN SoftwareTitle AS st ON st.SoftwareTitleID = ist.SoftwareTitleID LEFT OUTER JOIN dbo.ImportedComputer ic ON ist.ComplianceComputerID = ic.ComplianceComputerID WHERE st.FullName LIKE 'FlexNet Inventory %' AND ic.InventoryAgent = 'FlexNet Manager Suite' AND ic.computername = 'agentmachine001'
For more information on the FlexNet Inventory status page, see the help article FlexNet Inventory Agent Status.
This issue has been fixed in the following FlexNet Manager Suite releases: 2020 R1.1 / Sep 2020 (Cloud), 2020 R2 (On Premises)
Affected components: Inventory, Web UI
Master issue ID: IOJ-2125525
Also known as: FNML-71094
Dec 08, 2022 01:28 AM - edited Nov 20, 2023 01:28 PM