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

internal tables

Former Member
0 Likes
484

hi

just tell me indetails abt the following statement.

data: it-ekko type standard table of t-ekko <b>initial size 0</b>.

5 REPLIES 5
Read only

Former Member
0 Likes
467

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

Read only

Former Member
0 Likes
467

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.

Read only

Former Member
0 Likes
467

Hi,

in this case it's the same of OCCURS 0.

This specific the initial space allocated in memory for that table.

rgs

Read only

Former Member
0 Likes
467

<b>OCCURS 0</b> won't support in object orentation programs, instead of that use <b>INITIAL 0</b>

Read only

Former Member
0 Likes
467

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