‎2007 Jan 24 9:53 AM
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.
‎2007 Jan 24 9:59 AM
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
‎2007 Jan 24 10:01 AM
‎2007 Jan 24 10:00 AM
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
‎2007 Jan 24 10:06 AM
Thanks but I'm gettin an error '' Feild pos is unknow when I using write : pos(len) field.