What are the types of internal tables?
Answers were Sorted based on User's Feedback
Internal table are of there types:
Standard table:
Index table:
uses linear search
Sorted Table
user binary search
Hashed table : uses hash key field search.
earlier i have given declaring standard table by mistake.
Is This Answer Correct ? | 4 Yes | 0 No |
Answer / siddharth samal
We can also divide up internal table types into three kinds
by their access type:
Standard tables. In a standard table, you can access data
using either the table index or the key. Since the key of a
standard table always has to be non-unique for
compatibility reasons, the system searches the whole table
each time you access it using the key. Consequently, you
should always use the index to access a standard table
whenever possible.
Sorted tables. In a sorted table, the system
automatically stores the entries and inserts new entries
sorted by the table key. The system uses a binary search on
the table when you access it using the key. You can specify
the key of a sorted table as unique. You will often use the
key to access a sorted table, but it is also possible to
use the index. Standard tables and sorted tables are
generically known as index tables.
Hashed tables. You can only access a hashed table using
the key. There are certain conditions under which you can
considerably reduce the access times to large tables by
using a hashed table. The key of a hashed table must always
be unique.
Is This Answer Correct ? | 2 Yes | 1 No |
Internal table are of two type :
1 With Header Line
2 Without Header Line
With Header Line.
there is header attached to the table it use to
populate as well as retrive data from the internal table.
it is the obselete now
With out header Line.
We use work area..
same funcitions but the name is not same as internal table.
Is This Answer Correct ? | 2 Yes | 2 No |
what is the event while entering data in screen to get next field.
I have 10 records in flat file. In that 7th record is error record. I want to update to data base. If i used Call transaction method what about 7 record and what about 8,9,10 records. If i used Session method what happen. Is it updated or stop at 7th record?
What is the client concept in sap?
Differentiate between the uline and write: sy-uline statements if any?
How would you design a BDC (session method ) in which session will get executed itself. user do not need to go to SM35.
what is process code?
How do you call a report from a transaction ?
im trnsfering 10 data records from outbound though idocs but 8 records are transferred , what about remaing records but it did not show any error?
What is the transaction code to modify the hr form
Explain what is sap script? What is the purpose of sap script? Difference between sap script and report?
How do you import pay scale data from non sap to sap? : sap abap hr
How do you generate interactive lists in ALV?