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

Error while declaring the internal table

Former Member
0 Likes
434

Hi all,

I am trying to declare as following and I am getting the error

data: begin of test,

w_text(1000),

end of test.

data: i_test type standard table of test.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
404

You need to define it as TYPES;

TYPES: begin of test,

w_text(1000),

end of test.

Thanks

Mani

2 REPLIES 2
Read only

Former Member
0 Likes
405

You need to define it as TYPES;

TYPES: begin of test,

w_text(1000),

end of test.

Thanks

Mani

Read only

Former Member
0 Likes
404

Hello


types: begin of test,
w_text(1000),
end of test.

data: i_test type standard table of test.