‎2008 Jun 16 3:48 PM
Hi guys,
can anybody help me...wat are the different types of internal tables...we have
can any help me out with details..
regds
sunny.
‎2008 Jun 16 3:52 PM
Hi,
internal tables are 2 types
1)indexed internal tables
2)hashed internal tables
hashed internal tables we can access only be using key field
indexed internal tables we can access by using either key field and index.
indexed internal tables are again two types
1)standard
2)sorted
rgds,
bharat.
‎2008 Jun 16 3:51 PM
‎2008 Jun 16 3:52 PM
Hi,
internal tables are 2 types
1)indexed internal tables
2)hashed internal tables
hashed internal tables we can access only be using key field
indexed internal tables we can access by using either key field and index.
indexed internal tables are again two types
1)standard
2)sorted
rgds,
bharat.
‎2008 Jun 16 3:54 PM
Hi,
check this link:
http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb35de358411d1829f0000e829fbfe/content.htm.
Regards,
Sharath
‎2008 Jun 16 3:56 PM
Hello,
Definition of the table type in an internal table.
You can specify the non-generic table types standard table (STANDARD TABLE), sorted table (SORTED TABLE), and hashed table (HASHED TABLE), as well as the generic table types ANY TABLE and INDEX TABLE. The addition STANDARD is optional for standard tables.
The non-generic table types determine the internal administration and access type in the ABAP program for an internal table:
Standard tables are managed system-internally by a table index. New rows are either attached to the table or added at certain positions. The table key or the index identify individual rows.
Sorted tables are managed by a table index (like standard tables). The entries are listed in ascending order according to table key.
Hashed tables are managed by a hash algorithm. There is no table index. The entries are not ordered in the memory. The position of a row is calculated by specifying a key using a hash function.
The generic table types define a generic table type that can only be
used for typing formal parameters and field symbols:
ANY TABLE includes all table types.
INDEX TABLE includes all standard tables and sorted tables.
Regards.
‎2008 Jun 16 4:07 PM
Hi.
Have you tried searching for this topic? There are a number of very good search engines in the web and there is an SDN search, too. If there are any questions left after searching please ask specific about these.
Best regards,
Jan Stallkamp