‎2006 Nov 03 12:39 PM
Hi,
i have a problem with an alv grid.
In one column i will show some text, which has more than 150 characters. But the alv grid only shows 130 characters.
In the internal table the whole text is available and in the field catalog the outputlen = 200.
Is 130 the maximum length? Any ideas?
regards
‎2006 Nov 03 12:44 PM
Hi Wolfgand,
Just check out the Data element the text Field is defined
. Check in Debug mode whether the complete text is getting populated in the field.
Reward points if this helps.
Manish
‎2006 Nov 03 12:44 PM
Hi Wolfgand,
Just check out the Data element the text Field is defined
. Check in Debug mode whether the complete text is getting populated in the field.
Reward points if this helps.
Manish
‎2006 Nov 03 12:49 PM
Hello Wolfgang,
Declare the field as STRING.
If useul reward.
Vasanth
‎2006 Nov 03 12:55 PM
Hi,
The limit for all input fields is 130 characters (actually I thought it was 132 but could be wrong) and this limit seems to have been implemented in gui controls as well so you are a bit out of luck there isn't too much you can do. The only solution is to split the field into two fields, or alternatively use a text edit control that is activated when you select a line in your alv grid, then let the user edit the long text in the text box.
De Wildt
‎2006 Nov 03 1:02 PM
Hi,
thanks.
In debug mode:
In the structure editor the whole value is available.
I can't change the type of the field to string.
-> in an internal table with head line is a string not allowed
regards