‎2007 Oct 29 1:44 PM
hi
just tell me indetails abt the following statement.
data: it-ekko type standard table of t-ekko <b>initial size 0</b>.
‎2007 Oct 29 1:47 PM
Hi
it is the standard declaration of the internal table with initial size
using DATA statement
write the same line in SE38 and press F1 on each field and see
it will be clear
Regards
Anji
‎2007 Oct 29 1:50 PM
In the statement,
It_EKKO is the internal table name.
T_EKKO is the type name.
U have to use UNDERSCORE[ _ ] in IT_EKKO and not HYPHEN [ -].
IT_EKKO is a standard internal table.
‎2007 Oct 29 1:53 PM
Hi,
in this case it's the same of OCCURS 0.
This specific the initial space allocated in memory for that table.
rgs
‎2007 Oct 29 4:43 PM
<b>OCCURS 0</b> won't support in object orentation programs, instead of that use <b>INITIAL 0</b>
‎2007 Oct 29 4:57 PM
Hi Chandu,
When ever you say INITIALIZE 0. System will allocate 8kb memory default, Even though you use it or not. Any how make use of F1 to get all this information.
Regards,
Sagar