Hi,
how can I find out the component name of <l_line> if
the <l_line> is defined and assigned as below shown.
A table is being assigned to <l_line> but while runtime
the name of its components are unknown. How can they
be founf out.
Regards
sas
CALL METHOD cl_alv_table_create=>create_dynamic_table EXPORTING it_fieldcatalog = gt_fcat IMPORTING ep_table = new_table. ASSIGN new_table->* TO <outtab>. CREATE DATA new_line LIKE LINE OF <outtab>. ASSIGN new_line->* TO <l_line> .