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

Table controls

Former Member
0 Likes
452

What do you mean by table control???Where will we use this???

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
417

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

3 REPLIES 3
Read only

Former Member
0 Likes
418

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

Read only

Former Member
0 Likes
417

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.

Read only

Former Member
0 Likes
417

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.