cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

How to disable multiple reconciliations, due to third party integration

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.

(1) Solution

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

View solution in original post

(2) Replies

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