I think there is nothing like that.
The only thing that you could do to is to create a background program that replicate the entire table into you destination system everytime is executed (once a day, every 1 hours, every 30 min, etc) you select the entire Z table, delete the destination and INSERT the entire table.
With any of the following options you'll have to do it in every place where the Z Table is updated.
1) Create a Function with the logic and after every MODIFY, INSERT or UPDATE in the Z table call it.
2) A more elegant solution is to create a custom Bussiness Object (SWO1) but you will have to also trigger the event.
Regards