<?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: Refresh screen output on BACK in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-screen-output-on-back/m-p/3455212#M830127</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;   Before you press the back button, you need to clear these particular field in the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Bujji&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Bujji on Feb 19, 2008 12:18 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Feb 2008 11:17:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-19T11:17:52Z</dc:date>
    <item>
      <title>Refresh screen output on BACK</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-screen-output-on-back/m-p/3455209#M830124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi abapers,&lt;/P&gt;&lt;P&gt;I am struggling with a problem, hope to get a solution from you all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SCENARIO 1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my output is coming as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CHECKBOX                                           FIELD-EBELN&lt;/P&gt;&lt;P&gt;chk_box_1        -&lt;/P&gt;&lt;HR originaltext="---------" /&gt;&lt;P&gt;&amp;gt;                           beln-value_1&lt;/P&gt;&lt;P&gt;chk_box_2 &lt;STRONG&gt;Checked&lt;/STRONG&gt;    -&lt;/P&gt;&lt;HR originaltext="--------" /&gt;&lt;P&gt;&amp;gt;               ebeln-value_2&lt;/P&gt;&lt;P&gt;chk_box_3 &lt;STRONG&gt;checked&lt;/STRONG&gt;    -&lt;/P&gt;&lt;HR originaltext="----------" /&gt;&lt;P&gt;&amp;gt;              ebeln-value_3    &lt;/P&gt;&lt;P&gt;chk_box_4 &lt;STRONG&gt;checked&lt;/STRONG&gt;    -&lt;/P&gt;&lt;HR originaltext="-----------" /&gt;&lt;P&gt;&amp;gt;              ebeln-value_4&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ON CLICK OF CHECKBOX  [suppose 3 checkbox are clikced] SECONDARY LIST is opened where detail of ebeln is shown&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOW the problem:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN I CLICK 'BACK' button,  i want the checked button to display as uncehcked&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CHECKBOX                                FIELD-EBELN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;chk_box_1    -&lt;/P&gt;&lt;HR originaltext="------" /&gt;&lt;P&gt;&amp;gt;                      ebeln-value_1&lt;/P&gt;&lt;P&gt;chk_box_2   -&lt;/P&gt;&lt;HR originaltext="--------" /&gt;&lt;P&gt;&amp;gt;                     ebeln-value_2&lt;/P&gt;&lt;P&gt;chk_box_3  -&lt;/P&gt;&lt;HR originaltext="--------" /&gt;&lt;P&gt;&amp;gt;                      ebeln-value_3    &lt;/P&gt;&lt;P&gt;chk_box_4    -&lt;/P&gt;&lt;HR originaltext="------" /&gt;&lt;P&gt;&amp;gt;                      ebeln-value_4      &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please provide a solution to achieve this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance.&lt;/P&gt;&lt;P&gt;Rohan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Feb 2008 11:13:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-screen-output-on-back/m-p/3455209#M830124</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-19T11:13:30Z</dc:date>
    </item>
    <item>
      <title>Re: Refresh screen output on BACK</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-screen-output-on-back/m-p/3455210#M830125</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;Check like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
at user-command.
if sy-ucomm = 'BACK'.
if sy-lsind = 1.
clear: check1,check2,check3.
endif.
endif.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Feb 2008 11:16:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-screen-output-on-back/m-p/3455210#M830125</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-19T11:16:31Z</dc:date>
    </item>
    <item>
      <title>Re: Refresh screen output on BACK</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-screen-output-on-back/m-p/3455211#M830126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;well goto the status of the dynpro, and change either the UCOMM behind the BACK command, or goto PAI and change the behaviour when having UCOMM "BACK".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but be aware that in noth scenarios you will loose the normal functionality of your back button.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Feb 2008 11:17:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-screen-output-on-back/m-p/3455211#M830126</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-19T11:17:23Z</dc:date>
    </item>
    <item>
      <title>Re: Refresh screen output on BACK</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-screen-output-on-back/m-p/3455212#M830127</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;   Before you press the back button, you need to clear these particular field in the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Bujji&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Bujji on Feb 19, 2008 12:18 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Feb 2008 11:17:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-screen-output-on-back/m-p/3455212#M830127</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-19T11:17:52Z</dc:date>
    </item>
    <item>
      <title>Re: Refresh screen output on BACK</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-screen-output-on-back/m-p/3455213#M830128</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;resolved it myself,&lt;/P&gt;&lt;P&gt;the actual way was to modify the current line before the button is pressed [to go to secondary window] and when we press 'BACK',&lt;/P&gt;&lt;P&gt;the checboxes would already be refreshed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tanks anyways&lt;/P&gt;&lt;P&gt;rohan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Feb 2008 11:35:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-screen-output-on-back/m-p/3455213#M830128</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-19T11:35:10Z</dc:date>
    </item>
  </channel>
</rss>

