‎2022 Feb 18 6:30 AM
Hi i ve got a dumb when trying to insert values into iternal table.
Structure of zva_zeina is less then eina,
so i need to find values from eina which simmilar with zva_eina


‎2022 Feb 18 6:39 AM
The dump show you with an arrow, witch line create the dump.
I think it is the MODIFY lt_tab FROM ls_tab.
You could replace with.
LOOP AT lt_tab
REFERENCE INTO DATA(o_tab_line).
o_tab_line->mark = abap_true.
ENDLOOP.
‎2022 Feb 18 6:46 AM
‎2022 Feb 18 6:50 AM
it crushes when at 51 string, when im trying to insert . Modify is working well
‎2022 Feb 18 7:05 AM
use APPEND
APPPEND ls_tabz TO lt_tabz.
I am not sure REFERENCE is a new statement
‎2022 Feb 18 10:21 AM
Hi,
please try this:
insert ls_tabz into table lt_tabz
Best Regards
Thorsten