‎2009 May 26 9:30 PM
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????
‎2009 May 26 9:47 PM
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
‎2009 May 26 9:55 PM