Reduced Synchronization Strategies (Logical > Physical)
At synchronization from an object, the three strategies below can be applied.
Impact of synchronized object on other objects
This strategy enables definition of synchronization scope from the source object, with the possibility of extending this to all objects dependent on the source object and likely to be affected by its modification.
Example
Impact of other objects on synchronized object
This strategy enables integration in reduced synchronization scope of objects on which the source object directly depends, for example all objects associated with the source entity which are necessary for update of the corresponding table.
Example
All impacts
This strategy allows a combination of the two strategies described above. Scope of reduced synchronization is extended to objects required by the source object, and to all objects likely to be affected.
Example
See also:




