Advanced Replication Guide : Using advanced replication with applications : Building messages for synchronization : Propagating transactions from replica to master
  
Propagating transactions from replica to master
The MESSAGE APPEND PROPAGATE TRANSACTIONS statement lets you propagate transactions from a replica to the master database. Only statements that have been explicitly put to the replica database's transaction queue with the SAVE <sql-statement> statement, can be propagated. The syntax is:
MESSAGE unique_message_name APPEND
  [PROPAGATE TRANSACTIONS [WHERE {property_name {=|<|<=|>|>=|<>}
  ’value_string’ | ALL}]]
Use the WHERE clause to propagate only those transactions where the property_name meets specific criteria. You can set a property to a currently active transaction in the replica database with the SAVE PROPERTY statement. Use the keyword ALL to propagate all statements, including those with no properties.
The keyword ALL overrides any default propagation condition that may have been set earlier with the SAVE DEFAULT PROPAGATE PROPERTY WHERE command. This command is used to make parameters available to other statements in the transaction on the Parameter Bulletin Board.
See also
Building messages for synchronization