A new Flexera Community experience is coming on November 25th. Click here for more information.
We have multiple third party integration in our tool and each time the data is uploaded to Flexera, the reconciliation starts, is there a way we could stop reconciliation after each third party integration and run once when all the data is uploaded.
‎Aug 12, 2021 03:37 PM
It's a setting in the database (FNMSCompliance). On Prem you can update a table with the following script to disable running a reconcile when processing 3rd party imports:
Update ComplianceTenantSetting set SettingValue = '0'
from ComplianceTenantSetting join SettingName​
on ComplianceTenantSetting.SettingNameID = settingname.SettingNameID​
where settingname.name = 'PackageUploadTriggersWriters'
This is outlined in the following KB Article: https://community.flexera.com/t5/FlexNet-Manager-Knowledge-Base/License-reconciliation-process-runs-each-time-inventory-data-is/ta-p/2194
‎Aug 12, 2021 04:04 PM
It's a setting in the database (FNMSCompliance). On Prem you can update a table with the following script to disable running a reconcile when processing 3rd party imports:
Update ComplianceTenantSetting set SettingValue = '0'
from ComplianceTenantSetting join SettingName​
on ComplianceTenantSetting.SettingNameID = settingname.SettingNameID​
where settingname.name = 'PackageUploadTriggersWriters'
This is outlined in the following KB Article: https://community.flexera.com/t5/FlexNet-Manager-Knowledge-Base/License-reconciliation-process-runs-each-time-inventory-data-is/ta-p/2194
‎Aug 12, 2021 04:04 PM
Thanks a lot!
‎Aug 16, 2021 06:42 AM