Application Development 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: 

Array

Former Member
0 Kudos

Hello,

How can I make an array with two dimenssion using ABAP IV?

Thanks in advance,

Andrés Fariñas

1 REPLY 1

Former Member
0 Kudos

Hi,

you cannot build an array in ABAP, but you can build internal tables. Here is an example:

types:

begin of t1,

field1 type i,

field2 type i,

end of t1,

tt1 type table of t1,

begin of t2,

field1 type i,

field2 type tt1,

end of t2.

data:

it_tab type table of t2.

So far the definition.

regards

Siggi