Multiple choice technology packaged enterprise solutions

Which one of the following peoplecode events should not contain the Winmessage function?

  1. Saveprechange

  2. Fieldchange

  3. SaveEdit

  4. Rowinit

  5. Searchinit

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

The SavePreChange event should not use WinMessage because it fires during the save process before database commits, and user interaction at this critical point can cause save failures, timeouts, or inconsistent database state. WinMessage is appropriate in FieldChange, SaveEdit, RowInit, and SearchInit where user interaction is safe.