‎2007 Nov 05 7:38 AM
hi ..
plz tell me the differences the internal table and table control..
‎2007 Nov 05 7:46 AM
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
‎2007 Nov 05 12:20 PM
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