<?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: set_ready_for_input  and insert row. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-ready-for-input-and-insert-row/m-p/6958495#M1489583</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;solve by adding:&lt;/P&gt;&lt;P&gt;gs_layout-edit = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 28 May 2010 08:26:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-05-28T08:26:23Z</dc:date>
    <item>
      <title>set_ready_for_input  and insert row.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-ready-for-input-and-insert-row/m-p/6958491#M1489579</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hy guys, i having an issue with an alv oo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have created a button on my toolbar to make my alv editable by using&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;if grid-&amp;gt;is_ready_for_input( ) EQ 0. 
CALL METHOD grid-&amp;gt;set_ready_for_input 
    EXPORTING i_ready_for_input = 1.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and that works fine.&lt;/P&gt;&lt;P&gt;all the editable fields are in edit mode (all non keywords fields).&lt;/P&gt;&lt;P&gt;the issue is this, i want the user  to be able to insert a new row.&lt;/P&gt;&lt;P&gt;When the alv switches to the edit mode, 2 buttons add row and delete row are automatically add to the toolbar.&lt;/P&gt;&lt;P&gt;But when you have a new row, that row should completely be editable, but in my case the row is non editable.&lt;/P&gt;&lt;P&gt;so where does the event add rows is triggered? when i'm trying to debug the adding row action, the program never stop, add immediately the row.&lt;/P&gt;&lt;P&gt;I try to see if the handle data changed was trigged but neither this was triggered.&lt;/P&gt;&lt;P&gt;How can i make the added to be immediately editable?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: EBONGUE ANDRE on May 27, 2010 4:08 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 May 2010 14:02:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-ready-for-input-and-insert-row/m-p/6958491#M1489579</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-27T14:02:47Z</dc:date>
    </item>
    <item>
      <title>Re: set_ready_for_input  and insert row.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-ready-for-input-and-insert-row/m-p/6958492#M1489580</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should also set the EDIT option in your Layout. &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
    gs_layout-edit = 'X'.
    CALL METHOD g_grid-&amp;gt;set_table_for_first_display
         EXPORTING i_structure_name = 'SFLIGHT'
                   is_layout        = gs_layout   " &amp;lt;
         CHANGING  it_outtab        = gt_outtab.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check program BCALV_EDIT_01.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 May 2010 18:06:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-ready-for-input-and-insert-row/m-p/6958492#M1489580</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2010-05-27T18:06:48Z</dc:date>
    </item>
    <item>
      <title>Re: set_ready_for_input  and insert row.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-ready-for-input-and-insert-row/m-p/6958493#M1489581</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i already use it. the edit function works well, the only issue is the addition of the new row, the row is added but it's not editable.&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 May 2010 19:29:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-ready-for-input-and-insert-row/m-p/6958493#M1489581</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-27T19:29:43Z</dc:date>
    </item>
    <item>
      <title>Re: set_ready_for_input  and insert row.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-ready-for-input-and-insert-row/m-p/6958494#M1489582</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you set the edit-flag in the field-catalog for each column, or do you use styles for this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the first case, i have no idea at the moment, but in second case you should then insert the styles also to the new created row.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 May 2010 07:03:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-ready-for-input-and-insert-row/m-p/6958494#M1489582</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-28T07:03:35Z</dc:date>
    </item>
    <item>
      <title>Re: set_ready_for_input  and insert row.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-ready-for-input-and-insert-row/m-p/6958495#M1489583</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;solve by adding:&lt;/P&gt;&lt;P&gt;gs_layout-edit = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 May 2010 08:26:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-ready-for-input-and-insert-row/m-p/6958495#M1489583</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-28T08:26:23Z</dc:date>
    </item>
  </channel>
</rss>

