Entering content frameSyntax documentationget_data Locate the document in its SAP Library structure

This method returns a table of all current entries in the form.

CALL METHOD form->get_data
       EXPORTING all      = all
                 no_flush = no_flush
       IMPORTING fields   = fields
                 retcode  = retcode
                 error    = error.

Description of parameters

Parameter

Optional

Description

all

X

'X': Transfers all values from the form, including non-selected entries from list boxes.

fields

 

Table with the structure soi_form_list . The contents of this table reflect those of the form.

Caution

The value column of the fields table contains the corresponding field value. The possible values for list boxes are returned in this column. The selected value is indicated by the entry ‘1’ in the code column.

Leaving content frame