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: 

Multi dimensional tables

Former Member
0 Kudos

Dear all,

Can any one tell me about 'Multi dimensional tables'.

Thanks & Regards

venkata prasad

1 ACCEPTED SOLUTION

Former Member
0 Kudos

ABAP does not use an Multi dimensional tables concept, but anything you would do with a multidimensional table, you can do with ABAP. The internal table is like a one-dimensional array of records. For two dimensions, you have a number of choices. You can put the second dimension as another key field. You can use nested tables -- where a field of the record is in a table itself. And if you really want to, you can create dynamic tables -- where the number of fields ...

1 REPLY 1

Former Member
0 Kudos

ABAP does not use an Multi dimensional tables concept, but anything you would do with a multidimensional table, you can do with ABAP. The internal table is like a one-dimensional array of records. For two dimensions, you have a number of choices. You can put the second dimension as another key field. You can use nested tables -- where a field of the record is in a table itself. And if you really want to, you can create dynamic tables -- where the number of fields ...