<?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: ALV input enabled in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-input-enabled/m-p/1916751#M381256</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;   You will have one option for the selection in the internal table. If it is not there then keep one flag field in the internal table. Once a row is selected than that field will be set with 'X' for that particular row. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now read the grid internal table and make a conditon in the field catalog and fieldcatalog-edit = 'X'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No need of calling the Reuse_alv_list_display again. What you need to do in the User Command form you just need to set the selfield-refresh = 'X'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Br, &lt;/P&gt;&lt;P&gt;Laxmi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 22 Feb 2007 12:18:43 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-22T12:18:43Z</dc:date>
    <item>
      <title>ALV input enabled</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-input-enabled/m-p/1916747#M381252</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Need help frnds,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  I need to know how an alv output can be made input enabled.&lt;/P&gt;&lt;P&gt;  and My problem lies that when user selects a particular row and press the button (Say EDIT button) then that partcular row will be input enabled, not the entire column. Another problem, when in fieldcatalog the partcular column is set as Input enabled, then refresh is not working, I have to call the REUSE_ALV_LIST_DISPLAY again to view the column is input enabled.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;satya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Feb 2007 06:09:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-input-enabled/m-p/1916747#M381252</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-22T06:09:03Z</dc:date>
    </item>
    <item>
      <title>Re: ALV input enabled</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-input-enabled/m-p/1916748#M381253</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;any help frnds....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Feb 2007 06:26:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-input-enabled/m-p/1916748#M381253</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-22T06:26:56Z</dc:date>
    </item>
    <item>
      <title>Re: ALV input enabled</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-input-enabled/m-p/1916749#M381254</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;chk this blog&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/people/community.user/blog/2007/01/10/displaychange-mode-of-editable-fields-in-alv-using-function-modules-but-not-custom-containers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Feb 2007 06:29:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-input-enabled/m-p/1916749#M381254</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-22T06:29:53Z</dc:date>
    </item>
    <item>
      <title>Re: ALV input enabled</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-input-enabled/m-p/1916750#M381255</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To make the ALV input enabled,you can try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:is_layout type LVC_S_LAYO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is_layout-edit = 'X'.&lt;/P&gt;&lt;P&gt;CALL METHOD ALV-&amp;gt;SET_READY_FOR_INPUT&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    I_READY_FOR_INPUT = 1&lt;/P&gt;&lt;P&gt;    .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pass is_layout in the SET_TABLE_FOR_FIRST_DISPLAY.This will make the entire ALV editable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But for your requirement,you can try demo program: &amp;lt;b&amp;gt;BCALV_EDIT_02&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you select a particular row,then use this program and only make the particular cells editable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Beejal&lt;/P&gt;&lt;P&gt;**reward if this helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Feb 2007 08:08:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-input-enabled/m-p/1916750#M381255</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-22T08:08:37Z</dc:date>
    </item>
    <item>
      <title>Re: ALV input enabled</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-input-enabled/m-p/1916751#M381256</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;   You will have one option for the selection in the internal table. If it is not there then keep one flag field in the internal table. Once a row is selected than that field will be set with 'X' for that particular row. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now read the grid internal table and make a conditon in the field catalog and fieldcatalog-edit = 'X'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No need of calling the Reuse_alv_list_display again. What you need to do in the User Command form you just need to set the selfield-refresh = 'X'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Br, &lt;/P&gt;&lt;P&gt;Laxmi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Feb 2007 12:18:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-input-enabled/m-p/1916751#M381256</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-22T12:18:43Z</dc:date>
    </item>
    <item>
      <title>Re: ALV input enabled</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-input-enabled/m-p/1916752#M381257</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/reporting/alv/alvgrid_editable.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/reporting/alv/alvgrid_editable.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Feb 2007 12:29:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-input-enabled/m-p/1916752#M381257</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-22T12:29:35Z</dc:date>
    </item>
  </channel>
</rss>

