Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

abap

Former Member
0 Likes
619

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.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
595

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.

5 REPLIES 5
Read only

Former Member
Read only

Former Member
0 Likes
596

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.

Read only

Former Member
Read only

Former Member
0 Likes
595

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.

Read only

JanStallkamp
Advisor
Advisor
0 Likes
595

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