SAP Internal Tables Question:
Download Questions PDF

Internal Tables as Dynamic Data Objects?

Answer:

Data objects that are defined either with the data type of an internal table, or directly as an internal table, are always fully defined in respect of their line type, key and access method. However, the number of lines is not fixed. Thus internal tables are dynamic data objects, since they can contain any number of lines of a particular type. The only restriction on the number of lines an internal table may contain are the limits of your system installation. The maximum memory that can be occupied by an internal table (including its internal administration) is 2 gigabytes. A more realistic figure is up to 500 megabytes. An additional restriction for hashed tables is that they may not contain more than 2 million entries. The line types of internal tables can be any ABAP data types - elementary, structured, or internal tables. The individual lines of an internal table are called table lines or table entries. Each component of a structured line is called a column in the internal table.

Download SAP Internal Tables Interview Questions And Answers PDF

Previous QuestionNext Question
What is Generic Internal Tables?Explain Choosing a Table Type in SAP Internal Tables?