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

pass data to an internal table

Former Member
0 Likes
636

Hi,

if an internal table is empty and I would like pass some data to it. How does it work ?

Regards

ilhan

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
612

check if internal table is empty or not using

If intab is initial.

... populate here using append...

endif.

Hi,

if an internal table is empty and I would like pass some data to it. How does it work ?

Regards

ilhan

3 REPLIES 3
Read only

Former Member
0 Likes
612

move the values you want to the fields in the table, then append. do F1 on Append in SE38

Read only

Former Member
0 Likes
613

check if internal table is empty or not using

If intab is initial.

... populate here using append...

endif.

Read only

Former Member
0 Likes
612

hi

u use the state APPEND to append any kind of data to internal table

type in APPEND and giv F1 u get complete documentation of Append

shiva