‎2006 Dec 19 3:07 PM
Hello all..
I am using WebGui and I have a problem when the programs shows ALV's.. All
column titles appear in wrong way; it shows special characters ( for example %#&/ )
instead of the real title...
Can anyone help me with this ???
Many thanks
‎2006 Dec 19 4:42 PM
Hi,
Check your field-catalogue. Are u giving field names in small letters. All field names should be in Capital letters. Adn before appeing the data into field catlogue first the refresh the field catalogue table. And for displaying full title you can use output length. e.g.
l_size = 12.
x_fldcat-outputlen = l_size.
x_fldcat-col_pos = v_pos.
x_fldcat-fieldname = c_kostl.
x_fldcat-seltext = text-002.
x_fldcat-ref_field = c_kostl.
x_fldcat-ref_table = c_csks.
x_fldcat-coltext = text-002.
APPEND x_fldcat TO it_fldcat.
‎2006 Dec 19 4:42 PM
Hi,
Check your field-catalogue. Are u giving field names in small letters. All field names should be in Capital letters. Adn before appeing the data into field catlogue first the refresh the field catalogue table. And for displaying full title you can use output length. e.g.
l_size = 12.
x_fldcat-outputlen = l_size.
x_fldcat-col_pos = v_pos.
x_fldcat-fieldname = c_kostl.
x_fldcat-seltext = text-002.
x_fldcat-ref_field = c_kostl.
x_fldcat-ref_table = c_csks.
x_fldcat-coltext = text-002.
APPEND x_fldcat TO it_fldcat.
‎2006 Dec 21 9:54 PM
I've followed your checklist and it's all set as you suggest. Many thanks anyway.