Multiple choice technology

Which of the following fires after database is updated?

  1. SavePreChange

  2. SaveEdit

  3. RowDelete

  4. SavePostChange

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

PeopleCode event firing order matters: SaveEdit validates first, then SavePreChange before database update, SavePostChange AFTER successful database update. RowDelete fires during row deletion. The question specifically asks for the event that fires AFTER the database update completes, which is SavePostChange.