‎2008 Oct 10 1:33 PM
Hi,
my Internal table itab contains some data.
i created another dynamic internaltable itab1.
how can i pass itab data to itab1(dynamic internal table).
Regards,
Suresh
‎2008 Oct 10 1:54 PM
Or to access specific components, read the help of ASSIGN COMPONENT blah OF STRUCTURE wurr TO <fs>.
‎2008 Oct 10 1:36 PM
Hi,
I assume you are using something like
* Create a new Table
CALL METHOD cl_alv_table_create=>create_dynamic_table
EXPORTING
it_fieldcatalog = IT_LVC_CAT
IMPORTING
ep_table = new_table.
* Create a new Line with the same structure of the table.
ASSIGN new_table->* TO <l_table>.
CREATE DATA new_line LIKE LINE OF <l_table>.
ASSIGN new_line->* TO <l_line>.If so loop at your internal table and move-corresponding to the field symbol <l_line> and then append it to <l_table>.
Regards,
Darren
‎2008 Oct 10 1:54 PM
Or to access specific components, read the help of ASSIGN COMPONENT blah OF STRUCTURE wurr TO <fs>.
‎2008 Oct 13 2:15 PM