<?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_: ALV Check Box refresh on screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-alv-check-box-refresh-on-screen/m-p/4762495#M1116616</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;chbox - not possible to refresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 05 Nov 2008 04:04:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-05T04:04:17Z</dc:date>
    <item>
      <title>Problem_: ALV Check Box refresh on screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-alv-check-box-refresh-on-screen/m-p/4762491#M1116612</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I create a ALV report with a editable check box coloum, when program run I just make the first 5 rows checked. Actually, if I ticked any check box since row 6, then excute my function button, I just found in the internal table of AVL, the check box coloum at first rows were unticked, only the latest check box was ticked. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used   &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 = REF1.&lt;/P&gt;&lt;P&gt;  call method REF1-&amp;gt;CHECK_CHANGED_DATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at the begin of command form to refresh internal table. So what other method than CHECK_CHANGED_DATA shall a take to keep all the 6 checkbox ticked (unchange data in noclicked rows and change data in clicked row).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Oct 2008 06:57:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-alv-check-box-refresh-on-screen/m-p/4762491#M1116612</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-30T06:57:38Z</dc:date>
    </item>
    <item>
      <title>Re: Problem_: ALV Check Box refresh on screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-alv-check-box-refresh-on-screen/m-p/4762492#M1116613</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;show the complete user_command coding..?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Oct 2008 07:43:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-alv-check-box-refresh-on-screen/m-p/4762492#M1116613</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-30T07:43:13Z</dc:date>
    </item>
    <item>
      <title>Re: Problem_: ALV Check Box refresh on screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-alv-check-box-refresh-on-screen/m-p/4762493#M1116614</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;FORM user_command using P_UCOMM like SY-UCOMM&lt;/P&gt;&lt;P&gt;                        P_SELFIELD type SLIS_SELFIELD.&lt;/P&gt;&lt;P&gt;DATA: REF1 type ref to CL_GUI_ALV_GRID,&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 = REF1.&lt;/P&gt;&lt;P&gt;  call method REF1-&amp;gt;CHECK_CHANGED_DATA.&lt;/P&gt;&lt;P&gt;  case P_UCOMM.&lt;/P&gt;&lt;P&gt;*when press execution button&lt;/P&gt;&lt;P&gt;    when '&amp;amp;EXC'.                  "Execution Button&lt;/P&gt;&lt;P&gt;     break yshen.&lt;/P&gt;&lt;P&gt;        PERFORM SEL_REL_BACK USING P_SELFIELD.&lt;/P&gt;&lt;P&gt;.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am just wondering whether there is any other method to replace CHECK_CHANGED_DATA, to get the values for all unchanged rows before tick or untick at some rows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Oct 2008 00:21:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-alv-check-box-refresh-on-screen/m-p/4762493#M1116614</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-31T00:21:40Z</dc:date>
    </item>
    <item>
      <title>Re: Problem_: ALV Check Box refresh on screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-alv-check-box-refresh-on-screen/m-p/4762494#M1116615</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is there in this form PERFORM SEL_REL_BACK USING P_SELFIELD.&lt;/P&gt;&lt;P&gt;try to use p_selfield-refresh = 'X' at the end.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Oct 2008 03:03:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-alv-check-box-refresh-on-screen/m-p/4762494#M1116615</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-31T03:03:06Z</dc:date>
    </item>
    <item>
      <title>Re: Problem_: ALV Check Box refresh on screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-alv-check-box-refresh-on-screen/m-p/4762495#M1116616</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;chbox - not possible to refresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2008 04:04:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-alv-check-box-refresh-on-screen/m-p/4762495#M1116616</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-05T04:04:17Z</dc:date>
    </item>
    <item>
      <title>Re: Problem_: ALV Check Box refresh on screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-alv-check-box-refresh-on-screen/m-p/4762496#M1116617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this class there are some refresh methods try that methods in your programming.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CL_GUI_ALV_GRID&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2008 04:15:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-alv-check-box-refresh-on-screen/m-p/4762496#M1116617</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-05T04:15:15Z</dc:date>
    </item>
  </channel>
</rss>

