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

Problems with ALVs using WebGUI

alejandro_bindi
Active Contributor
0 Likes
466

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
421

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.

2 REPLIES 2
Read only

Former Member
0 Likes
422

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.

Read only

alejandro_bindi
Active Contributor
0 Likes
421

I've followed your checklist and it's all set as you suggest. Many thanks anyway.