cancel
Showing results for 
Search instead for 
Did you mean: 

Internal Tables

Former Member
0 Kudos

Hi Gurus,

Can any one tell me what is the use of internal tables.

Accepted Solutions (1)

Accepted Solutions (1)

Lakshmipathi
Active Contributor
0 Kudos

Dear Anand

Please check the help link

[Internal tables|http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb35de358411d1829f0000e829fbfe/content.htm]

thanks

G. Lakshmipathi

Answers (2)

Answers (2)

Former Member
0 Kudos

Anand,

In Simple, Internal Tables are used to hold the Data from the Database Tables and further processing be done from internal tables itself without going to database table.

This reduces database accesses and helps in keping the network load low.

Hope this clarifies and Please Reward If Really Helpful,

Thanks and Regards,

Sateesh.Kandula

Former Member
0 Kudos

Hello,

Internal tables provide a means of taking data from a fixed structure and storing it in working memory in ABAP. The data is stored line by line in memory, and each line has the same structure.

In ABAP, internal tables fulfill the function of arrays. Since they are dynamic data objects, they save the programmer the task of dynamic memory management in his or her programs.

Internal tables and structures are the two structured data types in ABAP. The data type of an internal table is fully specified by its line type, key, and table type.

Prase