‎2007 Mar 06 11:10 AM
Hi SDN,
I have three Table control with 15 lines each in my screen Layout.But when i am executing the Program only 4 lines of the table control was shown.There is a system variable sy-loopc which is always set to 4.I want atleast 15 lines to be displayed in my output screen.How to do this?
‎2007 Mar 06 11:13 AM
try this inm PBO
DESCRIBE TABLE itab LINES fill.
TC-lines = fill.
chk this demo program
DEMO_DYNPRO_TABCONT_LOOP
‎2007 Mar 06 11:13 AM
hi
by default, in your screen painter, if you drag your tablecontrol and depending on your resolution, whether data gets populated or not, it will show the same number of lines in the output...
cheers,
Sathish. R
‎2007 Mar 06 11:13 AM
try this inm PBO
DESCRIBE TABLE itab LINES fill.
TC-lines = fill.
chk this demo program
DEMO_DYNPRO_TABCONT_LOOP
‎2007 Mar 06 11:30 AM
I tried this one.Still only 4 lines are visible in my output.Any other way to proceed?
‎2007 Mar 06 11:39 AM
hi Niranjan,
Double-click on table control(click at the corners to get exactly) , in the attributes , checkout the height(below visible length field) , if it is set to 4 increase that to 15
‎2007 Mar 06 11:14 AM
In the screen painter:
Set the screen attributes Def length,Def Size and height to values higher so that you can see 15 when displayed.
Regards,
Ravi
‎2007 Mar 06 11:23 AM
i donn think u need to handle this.
if u have data, that shall display so many lines.
am i right guyz?
‎2007 Mar 06 11:47 AM
Hi Niranjan,
You have to set the loopc value to 15. That is loop count.
On the screen how many rows on the table control are visible....
check the visible height variable of the table control attributes.
Regards,
Ramesh Babu S
‎2007 Mar 06 12:25 PM
The Height field (Below the Visible length) is set to 32 .Is there is any field attribute by the name VISIBLE HEIGHT?
‎2007 Mar 09 2:19 PM
Hi SDN,
I solved the problem.There was a attribute in table control (RESIZING).When i unchecked it,the number of lines got exactly the as in layout.Thank you for all your inputs.
‎2015 Jul 06 8:23 AM