Hello! Settings modifications are not saved in the database after execution of ObjectSpace.AppSettings().Update(), because the SettingsAccessor service is not active during command execution. To successfully complete the modifications, modify Update class. public class Updater : XafariModuleUpdater { //... public override void SafeUpdateDatabaseAfterUpdateSchema() { //... SettingsAccessor.Instance.Updaters.Add(new FCSettingsNodeUpdater()); SettingsAccessor.Instance.Activated += Instance_Activated; SettingsAccessor.Instance.Initialize(); //... } void Instance_Activated(object sender, EventArgs e) { var objectSpace = ObjectSpaceFactory.Instance.GetObjectSpace(); objectSpace.AppSettings().Update(); objectSpace.CommitChanges(); } //... } Feel free to contact us if you have any questions. Regards, Mariya On behalf of Xafari Client Services Team |