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

declaration clarification

Former Member
0 Likes
498

hey,

i have seen declaration like this

data: i_exp_tab(650) occurs 0 with header line.

later ..on ..they are appending

like this.

append wa_line to i_exp_tab.

my question..how this declaration is possible

i_exp_tab(650) occurs 0 with header line

what will be structure of i_exp_tab????

2 REPLIES 2
Read only

Former Member
0 Likes
404

Hi,

It is nothing but a internal table with text filed of size 650 chars

It is same as

ex: data : begin of i_exp_tab occurs 0,

Text(650),

end of i_exp_tab.

i_exp_tab is structure of char with size 650

Regards

Krishna

Edited by: Krishna Gowrneni on May 27, 2009 2:18 AM

Read only

Former Member
0 Likes
404

Hi,

Table with one field "i_exp_tab"of char 650 length .