Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

insert from iternal to db

Former Member
0 Likes
1,826

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

5 REPLIES 5
Read only

FredericGirod
Active Contributor
1,768

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.
Read only

Former Member
0 Likes
1,768

cannot use 7.4 syntax

Read only

Former Member
0 Likes
1,768

it crushes when at 51 string, when im trying to insert . Modify is working well

Read only

FredericGirod
Active Contributor
1,768

use APPEND

APPPEND ls_tabz TO lt_tabz.

I am not sure REFERENCE is a new statement

Read only

ThorstenHoefer
Active Contributor
1,768

Hi,

please try this:

insert ls_tabz into table lt_tabz

Best Regards

Thorsten