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

avoid using the scroll bar

Former Member
0 Likes
423

I've about 9 columns in my internal table..... which is getting very wide and therefore the user is forced to use the scroll bar to chech out the last 2 columns.....how can I avoid the use of the scroll bar.

4 REPLIES 4
Read only

Former Member
0 Likes
400

1. If you are using ALV then in the layout use

wa_layout-colwidth_optimize = 'X'.

2. If you are not displaying a normal report the optimize the column widths in the in the internal table

Read only

0 Likes
400

I'm not using ALV..... How can I optimize the width please.

Read only

Former Member
0 Likes
400

if you are using classical report at write command fix the length

write : pos(len) field. as per your requirement.

if you are using alv

ifieldcat-outputlen = <fix the length>.

and ilayout-colwidth_optimize = 'X'.

regards

shiba dutta

Read only

0 Likes
400

Thanks but I'm gettin an error '' Feild pos is unknow when I using write : pos(len) field.