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

Use this method to insert a single table into the worksheet. The format of the table is not important. You pass information about the format by specifying the name of an ABAP Dictionary object or supplying a description of the structure.

CALL METHOD spreadsheet->insert_one_table
       EXPORTING ddic_name    = ddic_name
                 data_table   = data_table
                 fields_table = fields_table
                 rangename    = rangename
                 wholetable   = wholetable
                 updating     = updating
                 no_flush     = no_flush
       IMPORTING error        = error
                 retcode      = retcode.

Description of parameters

Parameter

Optional

Description

ddic_name

X

Name of the ABAP Dictionary structure

data_table

 

Data table

fields_table

 

Description of the table structure (if you have not already passed it using the ddic_name parameter).

Create the table with reference to the type SOI_FIELDS_TABLE .

rangename

 

Area name

wholetable

X

Inserts the entire table, regardless of the size of the range. (See also
SPREADHEET->SPREADSHEET_INSERTALL in soi_range_list).

updating

X

See The Updating Parameter

 

 

 

Leaving content frame