2007 Jun 19 11:02 AM
Hi expert,
I need to display field information using alv. field value is long. but in display only part of field value is displayed. How can i set length to display information .
ex :
Material desc : intel pentium pc with sound card.
it will display only
'intel p'.
i need to display full information.
Thank u.
2007 Jun 19 11:09 AM
Hi,
In ur fieldcat populate the output length field.
CLEAR x_fieldcat.
x_fieldcat-fieldname = 'FIELD'.
x_fieldcat-seltext_l = 'Text' .
<b>x_fieldcat-outputlen = 50.</b>
x_fieldcat-col_pos = 1.
APPEND x_fieldcat TO it_fieldcat.
2007 Jun 19 11:06 AM
IN FIELDCAT
FIELDCAT-OUTPUTLEN = 40.
OR IF IT IS NOT WORKING USE
ILAYOUT-COLWIDTH_OPTIMIZE = 'X'.
REGARDS
SHIBA DUTTA
Message was edited by:
SHIBA DUTTA
2007 Jun 19 11:09 AM
Hi,
In ur fieldcat populate the output length field.
CLEAR x_fieldcat.
x_fieldcat-fieldname = 'FIELD'.
x_fieldcat-seltext_l = 'Text' .
<b>x_fieldcat-outputlen = 50.</b>
x_fieldcat-col_pos = 1.
APPEND x_fieldcat TO it_fieldcat.
2007 Jun 19 11:11 AM
Hi,
Set appropiate value for the "intlen" property of fieldcat structure.
2007 Jun 19 11:19 AM
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |