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

Former Member
0 Likes
355

Hi all,

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

regards,

Keerthi vasan.M

3 REPLIES 3
Read only

Former Member
0 Likes
327

yes we can add a button..

Read only

Former Member
0 Likes
327

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

Read only

Former Member
0 Likes
327

This message was moderated.