ui.Dialog.setDefaultUnbuffered

Set the default unbuffered mode for all dialogs.

Syntax

ui.Dialog.setDefaultUnbuffered(
   value BOOLEAN )
  1. value is a boolean to enable the unbuffered mode.

Usage

By default, modal dialogs are not sensitive to variable changes. To make a dialog sensitive, use the UNBUFFERED attribute in the dialog instruction definition.

To defined the default for all subsequent dialogs, use the setDefaultUnbuffered() class method:
CALL ui.Dialog.setDefaultUnbuffered(TRUE)
Note: Only singular and multiple dialogs are sensitive to this API, parallel dialogs are implicitely using the unbuffered mode.