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 read a table control record when we scroll down the table control

Former Member
0 Likes
485

Hi friends,

Can anybody provide me the exact code to how to read the Table control record into work area when we scroll down the table control ?

The scenario is :

I displayed the table control with records, when I scroll down the table control,

when i Select the record ( after scrolling down), i am unable to read the record.

Please Give me the exact code. So that i will be thank full to them.I will Give full points to the exact code.

Pradeep Kumar Kota.

Hi friends,

Can anybody provide me the exact code to how to read the Table control record into work area when we scroll down the table control ?

The scenario is :

I displayed the table control with records, when I scroll down the table control,

when i Select the record ( after scrolling down), i am unable to read the record.

Please Give me the exact code. So that i will be thank full to them.I will Give full points to the exact code.

Pradeep Kumar Kota.

2 REPLIES 2
Read only

Former Member
0 Likes
457

Hi,

For scroll the code is different. check any std program, for all the buttons P,P+,P- ands P-- etc.

For selecting a record in table control in PAI, you can write a simple code like:

LOOP AT t_101_tc WHERE itchk = 'X'.

write the code here what you wants to do.

ENDLOOP.

reward if useful

regards,

anji

Read only

Sultanuddin
Explorer
0 Likes
457

HI,

When u r reading records from table control in the loop, Just write the below code in the loop.

name_of_table_control-lines = lines ( internal_table).

It will work.

Reply me... if it had been helpful for you