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

Problem in creating internal table inline with a structure

Former Member
0 Likes
450

I have created a structure and now would like to include the same into an internal table. This internal table will have the data and the same data need to be passed into smartform.

In this regard, i have created a structure and now would like to create an internal table inline with the structure.

The following code is giving me an error...

data: begin of i_eban occurs 0.

include STRUCTURE zieban.

end of i_eban.

Error: The field "ZIEBAN" is unknown, but there are the following fields with

similar names: "I_EBAN" and "EBAN".

Can anyone help me out ...????

Regards

Pavan

3 REPLIES 3
Read only

Wil_Wilstroth
Active Participant
0 Likes
393

Hi Pavan,

It looks like you forgotten to declare the following before you use it to declare your internal table:

TABLES : ZIEBAN.

Hope this helps.

Thanks

William Wilstroth

William Wilstroth
Read only

Former Member
0 Likes
393

Hi Pavan,

Instead of data give types..and try

Regards,

Kaveri

Read only

Former Member
0 Likes
393

Answerd....

Thanks...