‎2007 Jun 15 9:26 AM
Hello Friends,
I have a small issue regarding ALV display o/p.
I have taken a field and assigned a text to it.
But in the o/p instead of the whole length of the text
only half of the text is getting displayed.
I have declared the field as FLAG(50) TYPE C,
and assigning a text somewhere.
If i increase the lenght , then too the o/p doent show the reflected changes.
So please help.
‎2007 Jun 15 9:31 AM
Hi,
In ur fieldcat populate the output length field.
CLEAR x_fieldcat.
x_fieldcat-fieldname = 'FLAG'.
x_fieldcat-seltext_l = 'Text' .
<b> x_fieldcat-outputlen = 30.</b>
x_fieldcat-col_pos = 1.
APPEND x_fieldcat TO it_fieldcat.
‎2007 Jun 15 9:29 AM
Hi Shweta,
Using "Break-point" statement, first you check that field value.
Thanks.
‎2007 Jun 15 9:29 AM
Hello,
In the feildcatalog of the field give the
<b>Fieldcat-outputlen= 50 </b>
Vasanth
‎2007 Jun 15 9:31 AM
Hi,
In ur fieldcat populate the output length field.
CLEAR x_fieldcat.
x_fieldcat-fieldname = 'FLAG'.
x_fieldcat-seltext_l = 'Text' .
<b> x_fieldcat-outputlen = 30.</b>
x_fieldcat-col_pos = 1.
APPEND x_fieldcat TO it_fieldcat.
‎2007 Jun 15 11:53 AM