Multiple choice technology programming languages

You would like to keep the user from seeing the Forms Runtime program's "nn records applied and saved" messages. What would you put in the form's WHEN-NEW-FORM-INSTANCE trigger?

  1. :system.message_level := 0;

  2. :system.suppress_working := 'TRUE';

  3. :system.suppress_working := 'FALSE';

  4. :system.message_level := 5;

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

:SYSTEM.MESSAGE_LEVEL controls message display. Level 5 suppresses informational messages like 'nn records applied and saved'. Level 0 shows all messages. suppress_working controls working dialog, not success messages.