- This topic is empty.
Viewing 1 post (of 1 total)
Viewing 1 post (of 1 total)
- You must be logged in to reply to this topic.
Arthur Wang Digital Blog
Home › Forums › ABAP Programming › Internal Tables
What are ‘Internal Tables’?
‘Internal Tables’ are standard data type objects which exist only during the Runtime of an ABAP/4 program. They are used to perform table calculations on subsets of database tables and for re-organizing the contents of database tables according to a user’s need. Internal tables fulfil the need for arrays in ABAP/4.
There are three types of internal tables:
– Standard Tables with a ‘linear’ index. The key is always ‘non-unique.’
– Sorted Tables with either a ‘unique’ or ‘non-unique’ key.
– Hashed Tables (they do not have a linear index) with the key defined always as ‘unique.’