<?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: Problem in Interactive ALV in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-interactive-alv/m-p/8752604#M1675569</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi kushal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assuming that you are using CL_GUI_ALV_GRID then&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; you have to call method&amp;nbsp; go_grid-&amp;gt;check_changed_data( ) at PAI &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; of the dynpro displaying the ALV list in order to retrieve the data from the frontend (= ALV list) to your backend (= itab in ABAP program).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Place this method call as one of the first statements within your USER_COMMAND module (PAI) and the save will work&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 27 Apr 2012 05:15:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2012-04-27T05:15:11Z</dc:date>
    <item>
      <title>Problem in Interactive ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-interactive-alv/m-p/8752601#M1675566</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 am trying to build the following functionality in OO ALV. I am trying to show a table whose one of the fields is a single character field. I have shown the field as a check box. Requirement is that the user will click on the&amp;nbsp; check box for n number of entries, and when he clicks a button, the data will be saved in the database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have been able to show the table with the check box for each entries, but cant update the internal table when the check box is clicked. I need to catch the records which user has update (clicked the checkbox). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2012 20:15:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-interactive-alv/m-p/8752601#M1675566</guid>
      <dc:creator>former_member1128088</dc:creator>
      <dc:date>2012-04-26T20:15:46Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Interactive ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-interactive-alv/m-p/8752602#M1675567</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;Please have a closer look at BCALV_EDIT_05 (or SALV_DEMO_TABLE_COLUMNS for salv class).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kr,&lt;/P&gt;&lt;P&gt;Manu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2012 20:36:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-interactive-alv/m-p/8752602#M1675567</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-04-26T20:36:39Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Interactive ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-interactive-alv/m-p/8752603#M1675568</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;let's say it in easy way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;after you check the entries which you want, then you will do 1 action, press 1 button or else.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for this , event will be triggered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assume your oo grid name is go_grid, your display data internal table is gt_main.&lt;/P&gt;&lt;P&gt;in the &lt;LABEL&gt;Event capture&lt;/LABEL&gt;, use this method: &lt;SPAN class="L0S52"&gt;go_grid&lt;SPAN class="L0S70"&gt;-&amp;gt;&lt;/SPAN&gt;check_changed_data,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;so the data in internal table gt_main will be updated.(for your case, the checkbox field will be update),&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;then with these data, do what you want.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2012 05:03:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-interactive-alv/m-p/8752603#M1675568</guid>
      <dc:creator>Aiolos</dc:creator>
      <dc:date>2012-04-27T05:03:57Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Interactive ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-interactive-alv/m-p/8752604#M1675569</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi kushal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assuming that you are using CL_GUI_ALV_GRID then&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; you have to call method&amp;nbsp; go_grid-&amp;gt;check_changed_data( ) at PAI &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; of the dynpro displaying the ALV list in order to retrieve the data from the frontend (= ALV list) to your backend (= itab in ABAP program).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Place this method call as one of the first statements within your USER_COMMAND module (PAI) and the save will work&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2012 05:15:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-interactive-alv/m-p/8752604#M1675569</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-04-27T05:15:11Z</dc:date>
    </item>
  </channel>
</rss>

