What are the diferent types of internal table available? How
can we know the size of the internal tables?

Answer Posted / kumarm17

Internal Tables are:

STANDARD table : Key access to a standard table uses a
linear search. This means that the time required for a
search is in linear relation to the number of table entries.
You should use index operations to access standard tables.

SORTED table: Defines the table as one that is always saved
correctly sorted. Key access to a sorted table uses a binary
key. If the key is not unique, the system takes the entry
with the lowest index. The runtime required for key access
is logarithmically related to the number of table entries.

HASHED table: Defines the table as one that is managed with
an internal hash procedure You can only access a hashed
table using the generic key operations or other generic
operations ( SORT, LOOP, and so on). Explicit or implicit
index operations (such as LOOP ... FROM oe INSERT itab
within a LOOP) are not allowed.

INDEX table:
A table that can be accessed using an index. Index table is
only used to specify the type of generic parameters in a
FORM or FUNCTION. That means that you can't create a table
of type INDEX. Standard tables and sorted tables are index
tables.

Syntax : DATA itab TYPE table type of line type [WITH
UNIQUE/NON-UNIQUE KEY ] [Iinitial size n] [WITH HEADER LINE]

How do I get the row count of an internal table?
Ans : DESCRIBE TABLE <itab-Name> LINES <variable>
After the call, variable contains the number of rows of the
internal table

Is This Answer Correct ?    3 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How can end-of-selection be used?

636


How to pass data from list to report?

570


Explain about interactive report?

608


What is the use of table maintenance allowed?

547


Why do we need to code a loop statement in both the pbo and pai events for each table in the screen?

600






How to handle error in session method? : abap bdc

698


What are hashed tables?

873


What two statements are required in an abap program to output an icon using a written statement?

667


What are the sequences of event block?

628


What is update task

7632


Reports: Event functionality.

891


Explain different types of attributes of function module?

550


Define dispatcher?

824


What is the significance of technical settings (specified while creating a table in the data dictionary)? : abap data dictionary

610


What are the system table used in abap?

592