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

scrolling in table control

Former Member
0 Likes
509

hai all,

in my table control when i use vertical scroll bar and drag down the records of the first few lines disappeared and i cant fetch it again . i have to open the transaction again the datas are displayed.

how to solve this issue...

kind help....

hai all,

in my table control when i use vertical scroll bar and drag down the records of the first few lines disappeared and i cant fetch it again . i have to open the transaction again the datas are displayed.

how to solve this issue...

kind help....

3 REPLIES 3
Read only

Former Member
0 Likes
489

Hi,

Set Resizing vertical to 'X' in table control layout.

thanks

Read only

Former Member
0 Likes
489

write the following code in PBO

MODULE SET_LINES OUTPUT.

DATA VLINES TYPE I.

DESCRIBE TABLE ITABCTL LINES VLINES.

TABCTL-LINES = VLINES + 1.

ENDMODULE. " set_lines OUTPUT

here ITABCTL is the internal table being displayed on Table control TABCTL

Hope dis helps..

Reward all helpful answers

Message was edited by:

Prashant H Gupta

Read only

Former Member
0 Likes
489

thxs for reply