Application Development 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: 

pass data to an internal table

Former Member
0 Kudos

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

Former Member
0 Kudos

check if internal table is empty or not using

If intab is initial.

... populate here using append...

endif.

3 REPLIES 3

Former Member
0 Kudos

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

Former Member
0 Kudos

check if internal table is empty or not using

If intab is initial.

... populate here using append...

endif.

Former Member
0 Kudos

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