UPDATE and INSERT events don't occur when a versioned table is edited (both are modeled
as INSERTs to the Adds tables; UPDATEs also INSERT to the Deletes table). When reconciied,
compressed, and posted, the changes are implemented as an INSERT (or DELETE then INSERT
in the case of an UPDATE), but this usually occurs *much* later than the original edit.
You might experiment with triggers on the Adds table, but that is unsupported (and outside the
scope of this thread).
- V