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

difference b/w internal table and table control......

Former Member
0 Likes
402

hi ..

plz tell me the differences the internal table and table control..

2 REPLIES 2
Read only

Former Member
0 Likes
379

Hi Midathala,

<b>Internal Tables</b> are the virtual tables created to store data before passing the values into the database tables.

<b>

Table Control</b> is to display the line items from the database table. This is done by transferring the data thru internal table.

To create a Table Control

Should declare a table control of type tableview in the code .

Internal table should have same name and structure as that of table control.

PBO and PAI of the screen which contains the table control should have Loop ...Endloop statement.

Explore the standard SAP program DEMO_DYNPRO_TABLE_CONTROL_1 to learn more abt table control.

<b>Reward Points if Useful</b>

Regards

Gokul

Read only

Former Member
0 Likes
379

Internal tables

They are created and populated during runtime to store data and refreshed as soon as program terminates.

Table control

Its a control used to display tabulated data.

This data is stored on to some internal table which is mapped to a table control.

The data in table can den b displayed via a table control

Hope dis helps..reward if it does