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

ABAP Coding:The included type has no structure

Former Member
0 Likes
974

Hi All,

When i tried to write following code, i 'm getting error like "*The included type has no structure *"

TYPES:

BEGIN OF it_datapak1.

INCLUDE STRUCTURE RESULT_PACKAGE.

TYPES:

alpha(18) TYPE c,

END OF it_datapak1.

Any guesses?

Hi All,

When i tried to write following code, i 'm getting error like "*The included type has no structure *"

TYPES:

BEGIN OF it_datapak1.

INCLUDE STRUCTURE RESULT_PACKAGE.

TYPES:

alpha(18) TYPE c,

END OF it_datapak1.

Any guesses?

2 REPLIES 2
Read only

Former Member
0 Likes
831

Hi

Check in SE11 wether you have any structure with name RESULT_PACKAGE.

Regards

Srilaxmi

Read only

OttoGold
Active Contributor
0 Likes
831

why do you use TYPES: inside the BEGIN/ END of the type definition? That seems odd. Otto