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: 

" Statement not accessible"

Former Member
0 Kudos

Hi all

there is an error for the below statemnt

APPEND 'Techn.Platz' TO it_fieldnames.

" Statement not accessible"

Thanks

Protyusha

2 REPLIES 2

Former Member
0 Kudos

Hi Protyusha,

It seems that you are trying to append the complete line of a tabel with this 'Techn.Platz' . Instead you provide the field name that you are trying to append

For ex: it_fieldnames-fieldname.

If still you are not clear then send me the complete code I will explain you in detail.

Regards,

Md Ziauddin

Former Member
0 Kudos

Hi friend,

You can just use append with:

1/ work area with type of internal table

2/ initial line contains initial value of correct type of internal table.

3/ append lines of other internal table have the same rule with your internal.

in your case, please declare an work area has type of your internal table and assign value to w.a. then append to internal table.

regards,