<?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 Re: Editable ALV in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/editable-alv/m-p/6210109#M1377528</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;BCALV_TEST_GRID_EDITABLE&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 Sep 2009 11:25:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-09-23T11:25:27Z</dc:date>
    <item>
      <title>Editable ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/editable-alv/m-p/6210102#M1377521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Expert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have an editable ALV where I handled DATA_CHANGED event and doing some menupulation with the data and the current cell value also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;suppose I am entring '2' in the current cell and press enter and did some calculation in the data_changed event handler, where few cell value getting updated which are non-editable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the non-editable cell I am able to see the chages in value with decimal places like '8.00' but the same I need for non editable cell as well. In this case, &lt;STRONG&gt;entered value in the editable cell has 2, after hadling event need to display 2.00.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;more specific&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when I enter value 5 in the editable cell and handled data_changed event and want to display current cell value to 5.00.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to achieve that,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Sep 2009 09:57:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/editable-alv/m-p/6210102#M1377521</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-23T09:57:09Z</dc:date>
    </item>
    <item>
      <title>Re: Editable ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/editable-alv/m-p/6210103#M1377522</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rajesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;lv_ref_grid TYPE REF TO cl_gui_alv_grid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR : gv_tcode.&lt;/P&gt;&lt;P&gt;*-- to ensure that only new processed data is displayed&lt;/P&gt;&lt;P&gt;IF lv_ref_grid IS INITIAL.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;e_grid = lv_ref_grid.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;IF NOT lv_ref_grid IS INITIAL.&lt;/P&gt;&lt;P&gt;CALL METHOD lv_ref_grid-&amp;gt;check_changed_data.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Sep 2009 10:04:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/editable-alv/m-p/6210103#M1377522</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-23T10:04:55Z</dc:date>
    </item>
    <item>
      <title>Re: Editable ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/editable-alv/m-p/6210104#M1377523</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;Hi Rajesh, 
&amp;lt;li&amp;gt;Check the demo program &lt;STRONG&gt;BCALV_EDIT_04&lt;/STRONG&gt;. &lt;STRONG&gt;DATA_CHANGED&lt;/STRONG&gt; event has been clearly expained. 

Thanks
Venkat.O&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Sep 2009 10:06:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/editable-alv/m-p/6210104#M1377523</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2009-09-23T10:06:51Z</dc:date>
    </item>
    <item>
      <title>Re: Editable ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/editable-alv/m-p/6210105#M1377524</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Change the DAta Type for the field automatically it will show you 2.00&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg.   change the field type &lt;/P&gt;&lt;P&gt;        DATA col1(7) type p decimals 2.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Sep 2009 10:20:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/editable-alv/m-p/6210105#M1377524</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-23T10:20:26Z</dc:date>
    </item>
    <item>
      <title>Re: Editable ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/editable-alv/m-p/6210106#M1377525</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;Where to write this piece of code,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried writing inside data_changed event handler but going to infinite loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reg,&lt;/P&gt;&lt;P&gt;Rajesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Sep 2009 10:21:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/editable-alv/m-p/6210106#M1377525</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-23T10:21:46Z</dc:date>
    </item>
    <item>
      <title>Re: Editable ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/editable-alv/m-p/6210107#M1377526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Non-editable fields are showing correctly, bu editable field or enterd value is not getting changed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Sep 2009 10:25:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/editable-alv/m-p/6210107#M1377526</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-23T10:25:32Z</dc:date>
    </item>
    <item>
      <title>Re: Editable ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/editable-alv/m-p/6210108#M1377527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Non-editable fields are showing correctly, bu editable field value or enterd value is not getting changed from 2 to 2.00.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Sep 2009 10:26:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/editable-alv/m-p/6210108#M1377527</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-23T10:26:17Z</dc:date>
    </item>
    <item>
      <title>Re: Editable ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/editable-alv/m-p/6210109#M1377528</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;BCALV_TEST_GRID_EDITABLE&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Sep 2009 11:25:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/editable-alv/m-p/6210109#M1377528</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-23T11:25:27Z</dc:date>
    </item>
    <item>
      <title>Re: Editable ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/editable-alv/m-p/6210110#M1377529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what field type you have defined for the editable field?&lt;/P&gt;&lt;P&gt;this has to be defined as a type P decimals 2. or any currency field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Soumyaprakash Mishra on Sep 23, 2009 5:08 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Sep 2009 11:36:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/editable-alv/m-p/6210110#M1377529</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-23T11:36:56Z</dc:date>
    </item>
    <item>
      <title>Re: Editable ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/editable-alv/m-p/6210111#M1377530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Change the DAta Type for the field automatically it will show you 2.00&lt;/P&gt;&lt;P&gt;          Eg. change the field type &lt;/P&gt;&lt;P&gt;          DATA col1(7) type p decimals 2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;change this where  you have declare this filed ,&lt;/P&gt;&lt;P&gt;                                                 i.e.  in the Internal table or Structure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regads,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Sep 2009 07:13:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/editable-alv/m-p/6210111#M1377530</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-24T07:13:49Z</dc:date>
    </item>
  </channel>
</rss>

