<?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 Read data from Custom control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-data-from-custom-control/m-p/7011648#M1496782</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using custom control to display the data using CL_GUI_ALV_GRID. I have a checkbox as the first column to allow for multiple selection. When i select few rows using check boxes and click a button( in custom tool bar)  to proceed, it doesn't update the column  in the internal table with 'X' in the checkbox selected. Is there any method from which we read the columns changed in custom control. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note : I am looking for similar functionality as below for  'REUSE_ALV_GRID_DISPLAY'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         IF 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 = ref_grid.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      IF NOT ref_grid IS INITIAL.&lt;/P&gt;&lt;P&gt;        CALL METHOD 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;Thanks in Advance.&lt;/P&gt;&lt;P&gt;Taj.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 29 May 2010 13:53:47 GMT</pubDate>
    <dc:creator>former_member396896</dc:creator>
    <dc:date>2010-05-29T13:53:47Z</dc:date>
    <item>
      <title>Read data from Custom control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-data-from-custom-control/m-p/7011648#M1496782</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using custom control to display the data using CL_GUI_ALV_GRID. I have a checkbox as the first column to allow for multiple selection. When i select few rows using check boxes and click a button( in custom tool bar)  to proceed, it doesn't update the column  in the internal table with 'X' in the checkbox selected. Is there any method from which we read the columns changed in custom control. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note : I am looking for similar functionality as below for  'REUSE_ALV_GRID_DISPLAY'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         IF 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 = ref_grid.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      IF NOT ref_grid IS INITIAL.&lt;/P&gt;&lt;P&gt;        CALL METHOD 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;Thanks in Advance.&lt;/P&gt;&lt;P&gt;Taj.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 May 2010 13:53:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-data-from-custom-control/m-p/7011648#M1496782</guid>
      <dc:creator>former_member396896</dc:creator>
      <dc:date>2010-05-29T13:53:47Z</dc:date>
    </item>
    <item>
      <title>Re: Read data from Custom control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-data-from-custom-control/m-p/7011649#M1496783</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Used below method :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL METHOD obj_my_alv_grid-&amp;gt;CHECK_CHANGED_DATA&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      E_VALID   = chng&lt;/P&gt;&lt;P&gt;    CHANGING&lt;/P&gt;&lt;P&gt;      C_REFRESH = ref.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Mohd Tajuddin on May 29, 2010 4:45 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 May 2010 14:45:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-data-from-custom-control/m-p/7011649#M1496783</guid>
      <dc:creator>former_member396896</dc:creator>
      <dc:date>2010-05-29T14:45:11Z</dc:date>
    </item>
    <item>
      <title>Re: Read data from Custom control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-data-from-custom-control/m-p/7011650#M1496784</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;your code seems correct.. but check where are you calling this piece of code... should be in user command form.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 30 May 2010 00:03:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-data-from-custom-control/m-p/7011650#M1496784</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-30T00:03:57Z</dc:date>
    </item>
  </channel>
</rss>

