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

differences between standard structured sorted hashed internal tables.

Former Member
0 Likes
577

can any one elobrate the differences among them with simple examples.

why hashed table serch is faster...what happens if list is not sorted...explain the scenarios best suitable ..when we go for what kinda tables...

3 REPLIES 3
Read only

former_member404244
Active Contributor
0 Likes
514

Hi,

have a look at the below links...

http://www.sap-img.com/abap/what-are-different-types-of-internal-tables-and-their-usage.htm

Reward points if u find useful..

Regards,

Nagaraj

Read only

Former Member
0 Likes
514

<a href="http://www.sap-img.com/abap/what-are-different-types-of-internal-tables-and-their-usage.htm">refer this link for details</a>

<a href="http://www.geekinterview.com/question_details/1498">also refer this</a>

<a href="http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb366d358411d1829f0000e829fbfe/content.htm">also this- SAP Help</a>

regards,

srinivas

Read only

Former Member
0 Likes
514

hi,

Standard table : it uses linear search so it will take long time if it needs to sort bulk amount of records.....therefore standard tables are used if they have less number of records.

Sorted Tables : it is used when huge number of data needs to be sorted..if we use sorted tables .that will improve performance.

Hashtables : it uses Hashed algorithms. So the search is very fast if we use hashed tables.

Reward with points if helpful.