Application Development 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: 

ALV columns - Different Views in Firefox an Internet Explorer 6 / 7.

former_member554560
Discoverer
0 Kudos

Hi experts,

this is a very difficult question I thing but I'll try to explain as easy as possible. We have a problem to display an ALV - List in the Internetexplorer. The list has got nine columns and all of them should have different sizings -but it doesn't work in IE 6 / 7. We fixed the column sizes with the fieldcatalogue:


loop at pt_fieldcat into ls_fieldcat.
  case ls_fieldcat-fieldname.
    when 'AVM_NR'.
      ls_fieldcat-outputlen = 12.
      ls_fieldcat-col_pos = 1.
.
.
.
  endcase.
  modify pt_fieldcat from ls_fieldcat.
endloop.

In Firefox the problem does not exist and all columns are in the right size. The option "cwidth_opt = 'X'" only works in Firefox but not in the Internet Explorer.

And when I delete the line "ls_fieldcat-outputlen = 12" it doesn't interest the Internet Explorer !!

What could be the problem ?

Thanks for all answers !!

Greetz

Edited by: Christian Bröxkes on Mar 26, 2008 5:35 PM

2 REPLIES 2

Former Member
0 Kudos

Hello Christian,

I have the a similar problem . We send a ALV by mail and in explorer some colums are displayed in a second line but in firefox the view is OK.

Have you found a solution for your problem?

Regards

P.D: Please forgive my bad English

0 Kudos

Hi!

We haven't found the reason for the different views yet but I hope there will be more answers on my question.

thx