Application Development 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: 

table control

Former Member
0 Kudos

Hi all,

Is it possible to add a button inside a table control window.?

regards,

Keerthi vasan.M

3 REPLIES 3

Former Member
0 Kudos

yes we can add a button..

Former Member
0 Kudos

yes.

Drag a push button into your table control and then set the icon name say 'Execute' in the push button.

Only one user-command is enough to handle table control entries.To identify in which line of table control, the execute button is clicked, Use the following calculation.

Data:v_line type i.

CASE ok_code.

WHEN 'EXE'.

Get cursor line v_line.

v_index = tc-top_line + v_line - 1. -


> TC - Table control name

Read table it_ekpo index v_index.

ENDCASE.

*************************************

please go thouth the link

http://www.sapdevelopment.co.uk/dialog/tabcontrol/tc_basic.htm

Former Member
0 Kudos

This message was moderated.