Summary
This article will demonstrate how to troubleshoot issues where the Inventoried field in Discovered Devices is potentially incorrect or not.
Question
In the All Discovered Devices node, not all devices show Inventoried = Yes despite an agent being installed. How can I check whether it should be showing as inventoried or not?
Answer
Please use the following SQL query on your FNMP database to have a look at the relevant information we have for devices:
SELECT dd.DeviceName,
dd.ComputerID,
cc.ComputerName,
cc.ComplianceComputerID,
cc.InventoryAgent,
cc.HardwareInventoryDate,
cc.InventoryDate,
CASE cc.InventoryAgent
WHEN 'ManageSoft'
THEN
CASE WHEN cc.HardwareInventoryDate IS NULL
THEN 'No'
ELSE 'Yes'
END
WHEN 'FlexNet Manager Suite'
THEN
CASE WHEN cc.HardwareInventoryDate IS NULL
THEN 'No'
ELSE 'Yes'
END
ELSE
CASE WHEN cc.InventoryDate IS NULL
THEN 'No'
ELSE 'Yes'
END
END AS Inventoried
FROM DiscoveredDevice dd
LEFT OUTER JOIN ComplianceComputer cc on cc.ComplianceComputerID = dd.ComputerID
WHERE dd.DeviceName like '%MyDeviceName%'
You'll need to change the dd.DeviceName in the WHERE clause for a known device and then the Inventoried column should say Yes or No as applicable. Or to view all devices, simply comment out (using --) or remove the WHERE clause line.
Provided that the DiscoveredDevice record (using ComputerID) is linked to the relevant ComplianceComputer record (using ComplianceComputerID) then the Inventoried column is set to Yes if there is a value in the HardwareInventoryDate field.
If ComputerName or HardwareInventoryDate is NULL then this could mean that either:
- The compliance import (update inventory on the Reconcile licenses screen) has not been completing successfully
- No inventory has been reported from that device
If the query above does show a HardwareInventoryDate and is linked to the correct computer, please contact Support and upload the query results and screenshot of All DIscovered Devices to the case via the Support portal.
Additional Information
The HardwareInventoryDate is the date that the Flexera agent last collected Hardware inventory; it is not populated / updated by Oracle inventory, VMWare inventory etc, it is only Hardware inventory that updates this.
Also see the following article which describes a known issue related to the reported"Agent installed" values: "Agent Installed" flag on discovered device records may appear as "No" even if the agent is installed (IOJ-1805992)
Related Articles
Discovered Device role is incorrect e.g. printer showing as a workstation 7Number of Views Relationship between a virtual machine inventory device record and its host inventory device record is lost when there is … 10Number of Views Inventory Settings and All Discovered Devices pages may show "We have a problem" error if multiple imported computers with… 5Number of Views Hardware Asset Management dashboard widgets "Inventory devices with duplicate names" and "Devices discovered in past 90 da… 4Number of Views Discovered Device properties page may not display Oracle evidence if linked to a duplicate Computer record 4Number of Views
Hi, I am Reva - Ask me anything.
No new updates
Thanks for the feedback!
Your feedback has been saved.Rate this response:
Add Additional feedback ( Optional )
Are you sure you want to cancel
the case creation?
Are you sure you want to cancel the case creation?
Are you sure you want to close this case
| Products | Region | Phone Numbers |
|---|---|---|
| FlexNet Operations FlexNet Embedded FlexNet Publisher FlexNet Connect FlexNet Code Insight InstallAnywhere InstallShield |
North America * |
+1 630-332-2513 (toll) +1 877-279-2853 (toll-free in North America) |
| Europe * |
+44 1925 944367 (toll) +44 800 047 8642 (toll-free in Europe) |
|
| Japan * | +81 3-4540-5335 (select option 2) | |
| Australia * |
+61 3 9895 2177 +61 1800 560 603 (toll-free in Australia) |
|
|
Usage Intelligence (formerly
Revulytics) Compliance Intelligence |
Please use the Case Portal to submit your support ticket or reach out to your Revenera contact. | |
Revenera Assistant
Case id: 00001065
Activity: Status change: 2 hours ago