<?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: Back button in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/back-button/m-p/3630359#M874389</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My problem is everytime I click the back button it repeats the screen where I click the select all button.example i thick the select all button then deselect it then manually select any checkbox.then I decided to click the back button.when I click the back button it will repeat the things I did before I click the back button.do you have any idea on how would I fix it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in my code in user-command in select all button and deselect and back button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form user-command.&lt;/P&gt;&lt;P&gt;WHEN 'SELECT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      LOOP AT it_ltak INTO wa_ltak.&lt;/P&gt;&lt;P&gt;        wa_ltak-sel = 'X'.&lt;/P&gt;&lt;P&gt;        MODIFY it_ltak FROM wa_ltak TRANSPORTING sel.&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      PERFORM display_alv_list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WHEN 'DESELECT'.&lt;/P&gt;&lt;P&gt;      LOOP AT it_ltak INTO wa_ltak.&lt;/P&gt;&lt;P&gt;        CLEAR wa_ltak-sel.&lt;/P&gt;&lt;P&gt;        MODIFY it_ltak FROM wa_ltak TRANSPORTING sel.&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      PERFORM display_alv_list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WHEN '&amp;amp;BCK'.&lt;/P&gt;&lt;P&gt;      LEAVE TO SCREEN 0.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any idea experts..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 10 Apr 2008 08:25:20 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-10T08:25:20Z</dc:date>
    <item>
      <title>Back button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/back-button/m-p/3630357#M874387</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Im having a problem in my back button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my select all and deselect all button its working properly this is my code at user-command form.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN 'SELECT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      LOOP AT it_ltak INTO wa_ltak.&lt;/P&gt;&lt;P&gt;        wa_ltak-sel = 'X'.&lt;/P&gt;&lt;P&gt;        MODIFY it_ltak FROM wa_ltak TRANSPORTING sel.&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      PERFORM alv_display_list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it might be the cause why everytime I click the back button it repeats the history  of how many times I click the checkbox or the select all button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;could you help me on how would I fix my problem?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Apr 2008 07:55:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/back-button/m-p/3630357#M874387</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-10T07:55:19Z</dc:date>
    </item>
    <item>
      <title>Re: Back button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/back-button/m-p/3630358#M874388</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you please clarify this sentence?:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;it might be the cause why everytime I click the back button it repeats the history of how many times I click the checkbox or the select all button.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Apr 2008 07:58:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/back-button/m-p/3630358#M874388</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-10T07:58:28Z</dc:date>
    </item>
    <item>
      <title>Re: Back button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/back-button/m-p/3630359#M874389</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My problem is everytime I click the back button it repeats the screen where I click the select all button.example i thick the select all button then deselect it then manually select any checkbox.then I decided to click the back button.when I click the back button it will repeat the things I did before I click the back button.do you have any idea on how would I fix it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in my code in user-command in select all button and deselect and back button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form user-command.&lt;/P&gt;&lt;P&gt;WHEN 'SELECT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      LOOP AT it_ltak INTO wa_ltak.&lt;/P&gt;&lt;P&gt;        wa_ltak-sel = 'X'.&lt;/P&gt;&lt;P&gt;        MODIFY it_ltak FROM wa_ltak TRANSPORTING sel.&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      PERFORM display_alv_list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WHEN 'DESELECT'.&lt;/P&gt;&lt;P&gt;      LOOP AT it_ltak INTO wa_ltak.&lt;/P&gt;&lt;P&gt;        CLEAR wa_ltak-sel.&lt;/P&gt;&lt;P&gt;        MODIFY it_ltak FROM wa_ltak TRANSPORTING sel.&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      PERFORM display_alv_list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WHEN '&amp;amp;BCK'.&lt;/P&gt;&lt;P&gt;      LEAVE TO SCREEN 0.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any idea experts..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Apr 2008 08:25:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/back-button/m-p/3630359#M874389</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-10T08:25:20Z</dc:date>
    </item>
    <item>
      <title>Re: Back button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/back-button/m-p/3630360#M874390</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;Leave to screen 0 just goes back to the screen from which the output jus cam,e in... &lt;/P&gt;&lt;P&gt;ie., to the  state it was just before the click..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Apr 2008 08:30:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/back-button/m-p/3630360#M874390</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-10T08:30:41Z</dc:date>
    </item>
    <item>
      <title>Re: Back button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/back-button/m-p/3630361#M874391</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;For this you need to refresh the screen...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN '&amp;amp;BCK'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA ref1 TYPE REF TO cl_gui_alv_grid.&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;      CALL METHOD ref1-&amp;gt;refresh_table_display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;    LEAVE TO SCREEN 0.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Pls . reward if useful....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Apr 2008 08:37:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/back-button/m-p/3630361#M874391</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-10T08:37:29Z</dc:date>
    </item>
    <item>
      <title>Re: Back button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/back-button/m-p/3630362#M874392</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As far as i can get you from the mail is it repetion of data coming into your internal table ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when 'SELECT '&lt;/P&gt;&lt;P&gt;REFRESH  it_ltak[]. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY/INSERT INTO O/P TABLE .. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to avoid the repetition of data into an internal table use refresh on that particular table . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vijay.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Apr 2008 08:42:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/back-button/m-p/3630362#M874392</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-10T08:42:30Z</dc:date>
    </item>
    <item>
      <title>Re: Back button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/back-button/m-p/3630363#M874393</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;im not using any method class in here.&lt;/P&gt;&lt;P&gt;I did just use the reuse_alv_list display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is there any way to solve this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Apr 2008 08:57:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/back-button/m-p/3630363#M874393</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-10T08:57:11Z</dc:date>
    </item>
  </channel>
</rss>

