2008 Mar 11 9:10 AM
Hi
I have ALV and when I input text in editable column then after key ENTER the text is always do UPPER.
How to off this behavior?
And my editable column haven't white background color (it have the same color like others). Where can I change it?
Hi
I have ALV and when I input text in editable column then after key ENTER the text is always do UPPER.
How to off this behavior?
And my editable column haven't white background color (it have the same color like others). Where can I change it?
2008 Mar 11 9:45 AM
Hi,
Check fieldcatalog fields, I think there is one field to force no capital letters...
2008 Mar 11 9:49 AM
+I have ALV and when I input text in editable column then after key ENTER the text is always do UPPER.
How to off this behavior?+
This one directly from Dataelement, I think you are using the Datatype(for editable field) of type uppercase.
If you want to avoid that you use generic type use some character type.
like char20 etc.
And my editable column haven't white background color (it have the same color like others). Where can I change it?
This is not possible .
2008 Mar 11 11:08 AM
Kosmo,
In addition to other suggestions, the Domain for the field has a check box for Lower Case. The field must be defined as CHAR.
For colors, I haven't done much with them, but I would think they would be handled with the CELLSTYLES data and I use this during editting. To define them for the grid, use something like the following:
DATA: BEGIN OF gt_outtab OCCURS 0.
INCLUDE STRUCTURE zscmonth.
DATA: begin_date LIKE zscpaydt-begin_date,
end_date LIKE zscpaydt-end_date.
DATA: cellstyles TYPE lvc_t_styl.
DATA: END OF gt_outtab.
2008 Mar 11 11:44 AM