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

How to use Table Control?

Former Member
0 Likes
847

Hi,

I am working on dialog programming and am using a TABLE control for data entry.

How do I transport records from database table to screen and insert / update / delete records from the screen table which should get reflected in database table.

Kindly help.

Hi,

I am working on dialog programming and am using a TABLE control for data entry.

How do I transport records from database table to screen and insert / update / delete records from the screen table which should get reflected in database table.

Kindly help.

5 REPLIES 5
Read only

Former Member
0 Likes
815

Hi Kumar,

Check these :

[SAP ABAP Table Control explained in detail|http://sap.niraj.tripod.com/id29.html]

[Table control Screen Creation|http://sap.niraj.tripod.com/id31.html]

Regards,

Swapna.

Read only

GauthamV
Active Contributor
0 Likes
815

hi,

check these sample program.

DEMO_DYNPRO_TABCONT_LOOP

DEMO_DYNPRO_TABCONT_LOOP_AT.

Read only

Former Member
0 Likes
815

Hi,

fill an internal table with the data you want to manage from the standard table.

Create the table control referred to the internal table filled with insert and delete button.

Every change has done on the table control, change your internal table.

After you finish changing the data, link the SAVE button with MODIFY standard_table FROM TABLE internal_table and you'll pass the chages to your DB table.

Be carefull when deleting....you have to save the data deleted in an internal table of deletion or you won't delete the corresponding raws.

Regards

Edited by: anna pozzi on Sep 4, 2008 12:37 PM

Read only

Former Member
0 Likes
815

Hi,

Goto Tcode 'abapdocu', expand the tree for abapuserdialogs and screen and complex screen elements then you can find the list of programs that are used for the module pool table control.

Read only

Former Member
0 Likes
815

Thanks for your help guys