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 scroll problem

Former Member
0 Likes
562

Hi Experts,

I created a tables control in my program, i am not able to enter more then 8 rows in the table , please any one help me to enable the vertical scroll bar in my table control.

thanks in advance

regards

praveen k

4 REPLIES 4
Read only

Former Member
0 Likes
534

hi

try this

DESCRIBE TABLE lt_ekko1 LINES lv_line.

tc-lines = lv_line + 10.

Read only

kesavadas_thekkillath
Active Contributor
0 Likes
534

it depends upon number of entries in your internal table.

if you are creating a new entry then,

append intial line to itab.

Then take the total lines of internal table and set it to the LINES property of table control.

Read only

Former Member
0 Likes
534

Try giving value to these attributes.

*******Under the describe table lines statement give the no.of lines you want to be open for entry.

module tc_z9501_change_tc_attr output.

describe table it_z9501 lines tc_z9501-lines.

tc_z9501-lines = 30."----


>add this line to open 30 lines for input

endmodule.

Read only

Former Member
0 Likes
534

Hi,

you need to write the below code in PBO of the screen containing the table control

data : lines type numc.

clear lines.

DESCRIBE TABLE <internal table linked to table control> LINES lines.

<tablecontrolname>-lines = lines + 10.

regards,

Sakshi