<?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 Interactive ALV in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv/m-p/7655459#M1573549</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I have created an ALV report using the CL_GUI_ALV_GRID.&lt;/P&gt;&lt;P&gt;I need to change the data in the internal table(display table) once ENTER is pressed.&lt;/P&gt;&lt;P&gt;Kindly let me know how to do this.. I tried giving my code in PAI for the function code ENTER but it does seem to get triggered.&lt;/P&gt;&lt;P&gt;Also after selecting a value from the F4 help takes me to the first value in the display, where i want it to point on the current cell that was chosen. I tried using the the set field method and it did not work out.. Kindly let me know as how to go about on this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Rahul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 14 Feb 2011 05:41:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-02-14T05:41:11Z</dc:date>
    <item>
      <title>Interactive ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv/m-p/7655459#M1573549</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I have created an ALV report using the CL_GUI_ALV_GRID.&lt;/P&gt;&lt;P&gt;I need to change the data in the internal table(display table) once ENTER is pressed.&lt;/P&gt;&lt;P&gt;Kindly let me know how to do this.. I tried giving my code in PAI for the function code ENTER but it does seem to get triggered.&lt;/P&gt;&lt;P&gt;Also after selecting a value from the F4 help takes me to the first value in the display, where i want it to point on the current cell that was chosen. I tried using the the set field method and it did not work out.. Kindly let me know as how to go about on this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Rahul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Feb 2011 05:41:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv/m-p/7655459#M1573549</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-14T05:41:11Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv/m-p/7655460#M1573550</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Rahul&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In order to react on the ENTER event you need to call method &lt;STRONG&gt;REGISTER_EDIT_EVENT&lt;/STRONG&gt; (e.g. report BCALV_TEST_GRID_F4_HELP). This sample report may also lead you to a solution for your second problem (F4 related).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;  Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Feb 2011 06:59:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv/m-p/7655460#M1573550</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2011-02-14T06:59:11Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv/m-p/7655461#M1573551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Alternatively to react to ENTER key, use parameter &lt;STRONG&gt;I_APPL_EVENTS = 'X'&lt;/STRONG&gt; of ALV contructor. This way all events will result in PAI triggering.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Feb 2011 08:06:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv/m-p/7655461#M1573551</guid>
      <dc:creator>MarcinPciak</dc:creator>
      <dc:date>2011-02-15T08:06:38Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv/m-p/7655462#M1573552</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;         For the F4 value to get reflected in the ALV cell u have to call the method 'REGISTER_EDIT_EVENT' and pass the parameter 'mc_evt_modified ' to exporting parameter i_event_id. &lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Ravi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Feb 2011 08:56:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv/m-p/7655462#M1573552</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-15T08:56:25Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv/m-p/7655463#M1573553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rahul, &lt;/P&gt;&lt;P&gt;  the Events from ALV cannot be handled like other report events&lt;/P&gt;&lt;P&gt;So you have register the ALV events ... later you can handle the User commands. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Feb 2011 13:19:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv/m-p/7655463#M1573553</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-21T13:19:45Z</dc:date>
    </item>
  </channel>
</rss>

