What are the diferent types of internal table available? How
can we know the size of the internal tables?
Answer / 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 |
What is structure?
differnce between user and customer exit
For a package or transaction we will be having multiple no of user exits .Out of these exits how we will find out that the particular exit is the exit which we have to code
What are the two methods for modifying sap standard tables?
What are interactive reports?
in a report there is two options for each there is a seperate alv reportt. how to have form top-of-page for both in same report.
Difference between GET and GET Late?
which commands are allowed if you are working with an internal table of type sorted?
How to compare the two tables between the two systems? what is the process if anyone tell me please give me the answer?
can we transport text elements and text symblos in reports from devlopment to quality?is it necessary?
can i write combine code for row material and finish good for BDC?plz give me steps to create combine bdc.
How is the command suppress-dialog useful?