2004 Nov 03 3:48 PM
Hello,
How can I make an array with two dimenssion using ABAP IV?
Thanks in advance,
Andrés Fariñas
2004 Nov 03 4:13 PM
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