<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic ALV grid - parameters for edit in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-parameters-for-edit/m-p/3498869#M841593</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have ALV and when I input text in editable column then after key ENTER the text is always do UPPER. &lt;/P&gt;&lt;P&gt;How to off this behavior?&lt;/P&gt;&lt;P&gt;And my editable column haven't white background color (it have the same color like others). Where can I change it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 11 Mar 2008 09:10:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-11T09:10:05Z</dc:date>
    <item>
      <title>ALV grid - parameters for edit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-parameters-for-edit/m-p/3498869#M841593</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have ALV and when I input text in editable column then after key ENTER the text is always do UPPER. &lt;/P&gt;&lt;P&gt;How to off this behavior?&lt;/P&gt;&lt;P&gt;And my editable column haven't white background color (it have the same color like others). Where can I change it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Mar 2008 09:10:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-parameters-for-edit/m-p/3498869#M841593</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-11T09:10:05Z</dc:date>
    </item>
    <item>
      <title>Re: ALV grid - parameters for edit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-parameters-for-edit/m-p/3498870#M841594</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check fieldcatalog fields, I think there is one field to force no capital letters...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Mar 2008 09:45:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-parameters-for-edit/m-p/3498870#M841594</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-11T09:45:48Z</dc:date>
    </item>
    <item>
      <title>Re: ALV grid - parameters for edit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-parameters-for-edit/m-p/3498871#M841595</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;+I have ALV and when I input text in editable column then after key ENTER the text is always do UPPER. &lt;/P&gt;&lt;P&gt;How to off this behavior?+&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This one directly from Dataelement, I think you are using the Datatype(for editable field) of type uppercase.&lt;/P&gt;&lt;P&gt;If you want to avoid that you use generic type use some character type.&lt;/P&gt;&lt;P&gt;like char20 etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;And my editable column haven't white background color (it have the same color like others). Where can I change it?&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is not possible .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Mar 2008 09:49:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-parameters-for-edit/m-p/3498871#M841595</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-11T09:49:18Z</dc:date>
    </item>
    <item>
      <title>Re: ALV grid - parameters for edit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-parameters-for-edit/m-p/3498872#M841596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kosmo,&lt;/P&gt;&lt;P&gt;  In addition to other suggestions, the Domain for the field has a check box for Lower Case.   The field must be defined as CHAR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;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:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
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.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Mar 2008 11:08:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-parameters-for-edit/m-p/3498872#M841596</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-11T11:08:42Z</dc:date>
    </item>
    <item>
      <title>Re: ALV grid - parameters for edit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-parameters-for-edit/m-p/3498873#M841597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is field 'lowercase' to ws_field&lt;/P&gt;&lt;P&gt;Thanx works now&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Mar 2008 11:44:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-parameters-for-edit/m-p/3498873#M841597</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-11T11:44:18Z</dc:date>
    </item>
  </channel>
</rss>

