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

ALV grid - parameters for edit

Former Member
0 Likes
637

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?

4 REPLIES 4
Read only

Former Member
0 Likes
585

Hi,

Check fieldcatalog fields, I think there is one field to force no capital letters...

Read only

Former Member
0 Likes
585

+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 .

Read only

Former Member
0 Likes
585

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.

Read only

Former Member
0 Likes
585

It is field 'lowercase' to ws_field

Thanx works now