get_table 

You use this method to read a table from the table collection back into an ABAP program. However, you can only use the method for tables with type table_coll->table_type_input .

CALL METHOD table_coll->get_table
     EXPORTING table_name   = table_name
               no_flush     = no_flush
     IMPORTING description  = description
               date         = date
               time         = time
               error        = error
               retcode      = retcode
     CHANGING  ddic_name    = ddic_name
               data_table   = data_table
               fields_table = fields_table
               properties   = properties.

Description of parameters

Parameter

Optional

Description

table_name

 

The name of the internal table in the ABAP program

description

X

Description of the table

date

 

Date of last change

time

 

Time of last change

ddic_name

X

Link to the ABAP Dictionary

data_table

 

Table containing data

fields_table

X

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 .

properties

X

Additional properties

Create the table with reference to the type SOI_PROPERTIES_TABLE .