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

Module - Pool

Former Member
0 Likes
570

Hi SDN,

In my screen layout,i have a table control which has 10 lines.But when i am executing the program,it is showing only 3 lines as output.Is it possible to show all the 10 lines in my output screen?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
548

Hi,

Yes it is possible to show all 10 lines.

Check the attributes of the Table control and screen resolution.

Regards,

Anji

6 REPLIES 6
Read only

Former Member
0 Likes
549

Hi,

Yes it is possible to show all 10 lines.

Check the attributes of the Table control and screen resolution.

Regards,

Anji

Read only

Former Member
0 Likes
548

Hi Niranjan,

There are few possibilities... Which u have to check ...

1. Check How many lines are there in u r ITAB. I.e Debug and check lines in ITAB.

2. Check wheater u have taken number of lines in Considetaion or Not? using following code IN PBO....

LOOP AT <internal table> CURSOR <scroll-var>

[WITH CONTROL <table-control> ]

[FROM <line1> ] [TO <line2> ].

...<actions>...

ENDLOOP.

3. See on screem size of u r table control.

Lastly: Donot forget to Give points to those answers which u find helpful to you... : )

Cheers!!

DARSHAN

Read only

Former Member
0 Likes
548

Hi

Before displaying the table control, put 10 in the lines attribute.

ex:

CONTROLS flights TYPE TABLEVIEW USING SCREEN 100.

flights-lines = 10.

In this case it displays 10 lines at a time

Hope this helps.

Regards,

Prasanth

  • Reward if it helps

Read only

0 Likes
548

Hi Prasanth,

It is not showing 10 lines.It's only showing 4 lines in my output.How to proceed?

Read only

0 Likes
548

HI,

jus check the screen resolution.

Goto desktop --> right click ---> properties ---> click settings ---> change desktop area i.e 1024 x 768 pixels...

u may get the result after this modification.

Senthil kumar

Read only

0 Likes
548

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.