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 control (urgent)

Former Member
0 Likes
832

Hi,

How to insert a new column in the table control.

Plzz help points will be rewarded for the good answers.

Hi,

How to insert a new column in the table control.

Plzz help points will be rewarded for the good answers.

6 REPLIES 6
Read only

Former Member
0 Likes
810

Hi,

Check these Demo Programs

RSDEMO_TABLE_CONTROL

DEMO_DYNPRO_TABLE_CONTROL_1

DEMO_DYNPRO_TABLE_CONTROL_2

Check the Link STep by step procedure with Screen shot

https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/abap/abap-code-sam...

Check the below links.

http://www.sapmaterial.com/tablecontrol_sap.html

http://www.planetsap.com/howdo_a.htm

http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/dbac5135c111d1829f0000e829fbfe/content.htm

http://sap.niraj.tripod.com/id25.html

Reward Points if found helpfull..

Cheers,

Chandra Sekhar.

Read only

Former Member
0 Likes
810

Hi manjari,

Add the new field in the internal table that you are using for populating the table control.

In the screen layout add that field at your required position and pass it_output-field to the column in the layout.

Read only

Former Member
0 Likes
810

Hi,

1. check existing field name like fields coming from itab/workarea/DB table (if it is coming from itab, you can insert another field of itab)

2. Add field in layout screen.

3. check screen flow logic which are code for data transforing between screen fields and program fields.

Then it will work fine.

reward me if useful

L.Velu

Read only

Former Member
0 Likes
810

hi,

to add a new line:

tabcntrl-lines = sy-tfill + 1.

write it as per ur requirement.

Pls reward points if worked.

Regards,

Renjith Michael.

Edited by: Renjith Michael on Jan 28, 2008 4:26 PM

Read only

Former Member
0 Likes
810

hi

good

Check for the program demo_dynpro_tabcont_loop_at .

Else you can check some of the samples under Txn ABAPDOCU

thanks

mrutyun^

Read only

Former Member
0 Likes
810

Hi,

My problem got solved.