‎2008 Apr 18 6:23 PM
What do you mean by table control???Where will we use this???
‎2008 Apr 18 6:30 PM
hi sandeep,
Table Controls
ABAP offers two mechanisms for displaying and using table data in a screen. These mechanisms are table controls and step loops. Table controls and step loops are types of screen tables you can add to a screen in the Screen Painter. For example, the following screen contains a table control at the bottom:
Looping Through an Internal Table
Systemfelder
Datentransports
The following statement loops through an internal table and a screen table in parallel.
LOOP AT .
if you only want to determine the row of the table control. SY´-SUBRC allows you to check if the cursor is placed in a row of a table control
thanks
karthik
reward me points if usefull
‎2008 Apr 18 6:30 PM
hi sandeep,
Table Controls
ABAP offers two mechanisms for displaying and using table data in a screen. These mechanisms are table controls and step loops. Table controls and step loops are types of screen tables you can add to a screen in the Screen Painter. For example, the following screen contains a table control at the bottom:
Looping Through an Internal Table
Systemfelder
Datentransports
The following statement loops through an internal table and a screen table in parallel.
LOOP AT .
if you only want to determine the row of the table control. SY´-SUBRC allows you to check if the cursor is placed in a row of a table control
thanks
karthik
reward me points if usefull
‎2008 Apr 18 6:32 PM
Hi Sandeep,
Table control is the only facility provide through dialog programming. when we come across the use of updating standard tables,deletion,insertion and all database operations.
To display records in table format.
Table controls are enhanced version for step loops where we can expand rows .The main difference between these two is step loop can be expanded to two lines table controls can`t.
Reward points if useful.
Cheers,
Swamy Kunche.
‎2008 Apr 18 9:50 PM
Hi Sandeep,
i just want to give you a simple and clear knowledge of table control.have you created any tables in se11.if so have you created tablemaintenance for that table using single step.if you created you will find table control there.
table control is used to diaplay no of recors at a time in dialog or moduleprograms.
go through the following link which will explain the code and screens on how to use table control.
http://saptechnical.com/Tutorials/ABAP/TableControl/Demo.htm
please reward points if helpful.