What’s an effective way of using an internal table record? What are the types of internal tables?

Showing Answers 1 - 7 of 7 Answers

bhavs

  • Apr 14th, 2005
 

The types of internal tables are: standard table, sorted table and hashed table. Hash table is the most efficient of the three with a constant response time.

surendra badabagni

  • Sep 11th, 2005
 

among all methods of internal tables ,using and defining the internal tables by types statement is best and effective way, in internal tables three types are there 1.standard interna tables 2.sorted internal tables 3.hashed internal tables

Abhishek

  • Mar 16th, 2006
 

the effective way of using an internal table record is by using workarea(WA) of the same structure AS THAT OF ITAB.

  Was this answer useful?  Yes

sivanagalakshmi

  • Oct 3rd, 2006
 

types of internal tables:

indexed                                                            non-indexed

*structured internal table                                         *hashed internal table

       1.begin of

      2.like

*sorted internal table

*standard internal table

  Was this answer useful?  Yes

keron

  • Sep 28th, 2007
 

The internal tables could be catogrised into two.

  indexed   : standard and sorted tables.
  nonindexed: hash tables.

standard table: it is the one we use generally.In this the data is not sorted and the only thing we can do is just process the data with out any restriction on it.

sorted tables: it works in two different manner.
                       Frist one: is similar to standard table but the only difference is the data will be filled in a particular manner either ascending or descending. 
                      Second one: u can also fill the table keeping any field as primary key.now the data will be filled based on that particular key.

Hash tables:   u can use this when u want  to fill your  internal table avoiding the duplication of data.it never permits the duplicate record to be stored in a internal table

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions