1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  | Quintiq file version 2.0 
 |  #parent: #root 
 |  Method ReceiveConfigurationRequestSyncConfig (NamedValueTree nvt_i, NamedValue body_i, LibDEF_IntegrationEvent event_i) 
 |  { 
 |    Description: 'Receive Configuration message for requesting to read from model settings.' 
 |    TextBody: 
 |    [* 
 |      // Jacky CHAN Apr-28-2016 (created) 
 |      LibDEF_Util::EventLog( event_i, "Receiving sync config request" ); 
 |       
 |      // Refresh values from model settings 
 |      SettingsEngine::SettingsEngine().ProcessUpdates(); 
 |       
 |      this.UpdateFromModelSettings( true, event_i ); 
 |    *] 
 |  } 
 |  
  |