ui.Dialog.getFieldBuffer

Returns the input buffer of the specified field.

Syntax

getFieldBuffer(
   field STRING )
  RETURNING result STRING
  1. field is the field specification.

Usage

The getFieldBuffer() method returns the current input buffer of the specified field. The input buffer is used by the dialog to synchronize form fields and program variables. In some situations, especially when using the buffered mode or in a CONSTRUCT, you may want to access the field input buffer.

The parameter is a field specification, a string containing the field qualifier, with an optional prefix ("[table.]column").
LET buff = DIALOG.getFieldBuffer("customer.cust_name")

The input buffer can be set with:

For more details about field name specification, see Identifying fields in dialog methods.