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
413

Hi all,

how to know the selected line in a table control ? when i use a POH event.

THKS

3 REPLIES 3
Read only

Former Member
0 Likes
374

Hi Juan,

Suppose TAB is the table control name for the screen , defined as follows:

CONTROLS: TAB TYPE TABLEVIEW USING SCREEN '9000'.

TAB-CURRENT_LINE will give you the current line selected.

For more details , you can refer this link.

http://esnips.com/doc/48bd95e8-facc-4932-b923-465ba59bad24/Table-Control.pdf

Regards,

SP.

Read only

Former Member
0 Likes
374

Hi Juan,

Refer thse threads.

Rgds,

Prakash

Read only

Former Member
0 Likes
374

Hi,

u can use this syntax,

LOOP AT T_ITAB

WITH CONTROL TC_202

CURSOR TC_202-CURRENT_LINE.

Regards,

Seema.