A new Flexera Community experience is coming on November 25th. Click here for more information.
Hi community
we are looking for a way to automatically ignore devices we don't need anymore. But the only point of contact that comes in my mind is through sql modifying directly the db.
Is there any supported way to automatically ignore devices? I'm thinking of an api or something similar. Scenario is that some devices are dismissed and so we want to ignore the inventory related to them immediately. Devices are dismissed day by day so we need an automatic way to do it.
Additionally, in which table and which column of that table carries the info about the column "Status" of a device in all inventory page? Final solution will be acting directly on the data stored in db.
Thank you all!
‎Dec 13, 2020 06:14 PM
@marcog yes you can use csv as a source and yes you can schedule the business adapter to run at a specific time.
Please see the Using FlexNet Business Adapters documentation available here if you are using FNMS On-Premises or here if you are using FNMS Cloud to see how to work with csv and how to schedule the execution of business adapters.
‎Dec 17, 2020 06:35 PM
Hi @marcog
You could use a Business Adapter to set the status of you inventory devices. This has the advantage of being schedulable through the Beacon. So you could have the list of inventory devices to be ignored populated in a spreadsheet or database and have the business adapter run each day to update the status in FNMS.
The alternative as you have mentioned is directly modifying the data in the database. If you want to go down this path the table is called ComplianceComputer and the column is called ComplianceComputerStatusID whose values correspond to the values in the ComplianceComputerStatus table.
‎Dec 13, 2020 06:39 PM
‎Dec 14, 2020 04:47 AM
‎Dec 14, 2020 05:14 AM
‎Dec 14, 2020 04:48 AM
@marcog - Best Practice would be to do this with a Business Adapter, and that is also your only option for FNMS Cloud.
If you have FNMS On-Premises, it can be done with SQL, you would just need to work out the WHERE Clause to identify which Inventory Devices you want to update to a status of "Ignored".
Update ComplianceComputer SET ComplianceComputerStatusID=2 WHERE .............
‎Dec 14, 2020 06:04 AM
‎Dec 17, 2020 10:24 AM
@marcog yes you can use csv as a source and yes you can schedule the business adapter to run at a specific time.
Please see the Using FlexNet Business Adapters documentation available here if you are using FNMS On-Premises or here if you are using FNMS Cloud to see how to work with csv and how to schedule the execution of business adapters.
‎Dec 17, 2020 06:35 PM