‎2010 Jan 18 7:20 AM
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
‎2010 Jan 18 7:33 AM
hi
try this
DESCRIBE TABLE lt_ekko1 LINES lv_line.
tc-lines = lv_line + 10.
‎2010 Jan 18 8:37 AM
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.
‎2010 Sep 29 9:46 AM
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.
‎2010 Sep 29 9:51 AM
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