Entering content frameSyntax documentation get_table_by_url Locate the document in its SAP Library structure

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_by_url
     EXPORTING table_name   = table_name
               table_url    = table_url
               no_flush     = no_flush
     IMPORTING error        = error
               retcode      = retcode.

Description of parameters

Parameter

Optional

Description

table_name

 

The name of the internal table in the ABAP program

table_url

 

Memory address of the internal table

 

Leaving content frame