<?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: Check_Changed_Data not working in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-changed-data-not-working/m-p/5940908#M1334546</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi nagaraj ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just changed the my ALV from gird to &lt;STRONG&gt;list&lt;/STRONG&gt;. So problem solved.Thanks for your time and consideration.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reagrds,&lt;/P&gt;&lt;P&gt;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 10 Jul 2009 05:41:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-07-10T05:41:50Z</dc:date>
    <item>
      <title>Check_Changed_Data not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-changed-data-not-working/m-p/5940904#M1334542</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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my &lt;STRONG&gt;BADI&lt;/STRONG&gt; i am triggering an ALV grid pop-up to select values with check box. For getting the changed data i am using check_changed_data method. Even after selecting the check boxes in ALV pop i am not able to get the changed data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;program code :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
      i_callback_program    = sy-repid
      i_grid_title          = 'Select MAil ID'
      is_layout             = lt_layout
      it_fieldcat           = t_fieldcat
      i_screen_start_column = 20
      i_screen_start_line   = 5
      i_screen_end_column   = 70
      i_screen_end_line     = 15
      I_SAVE                = 'A'
    TABLES
      t_outtab              = it_ZEMAIL
    EXCEPTIONS
      program_error         = 1
      OTHERS                = 2.
  IF sy-subrc &amp;lt;&amp;gt; 0.

  ENDIF.


data: gd_repid like sy-repid,
        ref_grid type ref to cl_gui_alv_grid.

  if ref_grid is initial.
    call function 'GET_GLOBALS_FROM_SLVC_FULLSCR'
      importing
        e_grid = ref_grid.
  endif.
  if not ref_grid is initial.
    call method ref_grid-&amp;gt;check_changed_data .
  endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;while debugging i found that the &lt;STRONG&gt;ref_grid&lt;/STRONG&gt; remains initial after the function GET_GLOBALS_FROM_SLVC_FULLSCR.&lt;/P&gt;&lt;P&gt;so  call method ref_grid-&amp;gt;check_changed_data  is not executed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So how can i solve this problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Jul 2009 11:33:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-changed-data-not-working/m-p/5940904#M1334542</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-09T11:33:28Z</dc:date>
    </item>
    <item>
      <title>Re: Check_Changed_Data not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-changed-data-not-working/m-p/5940905#M1334543</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;u need to use user command &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      i_callback_program    = sy-repid&lt;/P&gt;&lt;P&gt;      i_grid_title          = 'Select MAil ID'&lt;/P&gt;&lt;P&gt;     i_callback_user_command  = 'USER_COMMAND'&lt;/P&gt;&lt;P&gt;      is_layout             = lt_layout&lt;/P&gt;&lt;P&gt;      it_fieldcat           = t_fieldcat&lt;/P&gt;&lt;P&gt;      i_screen_start_column = 20&lt;/P&gt;&lt;P&gt;      i_screen_start_line   = 5&lt;/P&gt;&lt;P&gt;      i_screen_end_column   = 70&lt;/P&gt;&lt;P&gt;      i_screen_end_line     = 15&lt;/P&gt;&lt;P&gt;      I_SAVE                = 'A'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      t_outtab              = it_ZEMAIL&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      program_error         = 1&lt;/P&gt;&lt;P&gt;      OTHERS                = 2.&lt;/P&gt;&lt;P&gt;  IF sy-subrc  0.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM user_command USING lv_ucomm LIKE sy-ucomm&lt;/P&gt;&lt;P&gt;                  rs_selfield TYPE slis_selfield.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Declaration of local Variables&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  DATA : lv_ref1 TYPE REF TO cl_gui_alv_grid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Event&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    WHEN &amp;lt;event&amp;gt;&lt;/P&gt;&lt;P&gt;&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 = lv_ref1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CALL METHOD lv_ref1-&amp;gt;check_changed_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now try this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Jul 2009 11:42:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-changed-data-not-working/m-p/5940905#M1334543</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2009-07-09T11:42:26Z</dc:date>
    </item>
    <item>
      <title>Re: Check_Changed_Data not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-changed-data-not-working/m-p/5940906#M1334544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Nagaraj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is, i am using this in &lt;STRONG&gt;BADI&lt;/STRONG&gt; = &lt;STRONG&gt;Method&lt;/STRONG&gt;. so i cant make use of form user command within the method. Is there any other way to achieve this without forms. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Jul 2009 11:47:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-changed-data-not-working/m-p/5940906#M1334544</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-09T11:47:19Z</dc:date>
    </item>
    <item>
      <title>Re: Check_Changed_Data not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-changed-data-not-working/m-p/5940907#M1334545</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;Yes in methods we cannot use form endform...One more option you can try is creating a cutsoom functionmodule and writing the code there and then call that FM in the badi method and see.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Jul 2009 11:56:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-changed-data-not-working/m-p/5940907#M1334545</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2009-07-09T11:56:38Z</dc:date>
    </item>
    <item>
      <title>Re: Check_Changed_Data not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-changed-data-not-working/m-p/5940908#M1334546</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi nagaraj ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just changed the my ALV from gird to &lt;STRONG&gt;list&lt;/STRONG&gt;. So problem solved.Thanks for your time and consideration.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reagrds,&lt;/P&gt;&lt;P&gt;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2009 05:41:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-changed-data-not-working/m-p/5940908#M1334546</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-10T05:41:50Z</dc:date>
    </item>
    <item>
      <title>Re: Check_Changed_Data not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-changed-data-not-working/m-p/5940909#M1334547</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you please tell me.&lt;/P&gt;&lt;P&gt;I am using cl_gui_custom_container for First display.&lt;/P&gt;&lt;P&gt;for second interactive display purpose what are the rows am i selected in first container&lt;/P&gt;&lt;P&gt;that row only display in second container.&lt;/P&gt;&lt;P&gt;please tell me which process is to their to get the selectes key field data how am i get.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 May 2014 12:15:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-changed-data-not-working/m-p/5940909#M1334547</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-27T12:15:33Z</dc:date>
    </item>
  </channel>
</rss>

