SQL> desc v$transaction
Name
-------------------------
ADDR
XIDUSN
XIDSLOT
XIDSQN
...
Associated with a transaction is the undo segment (xidusn), the slot (xidslot) but also a sequence number (xidsqn).
So in the example you're referring to, I'll head off to undo segment for a particular slot and sequence #. But when its been overwritten, the sequence # I find will have moved on.
Because it got overwritten, I *know* the transaction has committed, but what I've lost access to is the time (scn) at which it committed, so I dont know whether I should have undone or not for a consistent read.