<?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: Refreshing a Screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/refreshing-a-screen/m-p/2122047#M444919</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; If all the values are referred to workarea , then simply use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR WA_ITAB.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 29 Mar 2007 13:01:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-29T13:01:35Z</dc:date>
    <item>
      <title>Refreshing a Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refreshing-a-screen/m-p/2122042#M444914</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi how to refresh a screen in a module program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to clear all the fields ....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Mar 2007 12:17:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refreshing-a-screen/m-p/2122042#M444914</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-29T12:17:52Z</dc:date>
    </item>
    <item>
      <title>Re: Refreshing a Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refreshing-a-screen/m-p/2122043#M444915</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hii...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what do you mean by refresh?&lt;/P&gt;&lt;P&gt;do you want to clear the values of all the fields on screen?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if yes...&lt;/P&gt;&lt;P&gt;then in the last PBO module of your screen write..&lt;/P&gt;&lt;P&gt;**************************************************&lt;/P&gt;&lt;P&gt;Module CLEAR OUTPUT.&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;  clear screen-name.&lt;/P&gt;&lt;P&gt;  MODIFY screen.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;**************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;alternatively you can also write..&lt;/P&gt;&lt;P&gt;**************************************************&lt;/P&gt;&lt;P&gt;Module CLEAR OUTPUT.&lt;/P&gt;&lt;P&gt;  clear screen.&lt;/P&gt;&lt;P&gt;  MODIFY screen.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**************************************************&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward points for helpful answers,&amp;lt;/b&amp;gt;Tejas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Mar 2007 12:22:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refreshing-a-screen/m-p/2122043#M444915</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-29T12:22:58Z</dc:date>
    </item>
    <item>
      <title>Re: Refreshing a Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refreshing-a-screen/m-p/2122044#M444916</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;create a PF status as "REFR" ie refresh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call screen &amp;lt;screen Number&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in PBO clear all screen values if ok_code eq REFR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;aRs.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Mar 2007 12:23:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refreshing-a-screen/m-p/2122044#M444916</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2007-03-29T12:23:18Z</dc:date>
    </item>
    <item>
      <title>Re: Refreshing a Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refreshing-a-screen/m-p/2122045#M444917</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Look at EH_ONRESET method of any controller class to get some idea on how to reset the context node values.&lt;/P&gt;&lt;P&gt;For example look at method BP_RESET of controller impl class CL_CRM_IC_BUPACONTROLLER_IMPL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward all help full answers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        sunil kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Mar 2007 12:27:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refreshing-a-screen/m-p/2122045#M444917</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-29T12:27:53Z</dc:date>
    </item>
    <item>
      <title>Re: Refreshing a Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refreshing-a-screen/m-p/2122046#M444918</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;clear screen.&lt;/P&gt;&lt;P&gt;MODIFY screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; this syntax doesn't work.&lt;/P&gt;&lt;P&gt;I tried writing in PBo module.&lt;/P&gt;&lt;P&gt;My requirement is simple i want to clear all the fields in the screen when the transaction is called ...&lt;/P&gt;&lt;P&gt;I called the custom transaction from my report program by assigning some fields usine parameter iD ... now when i try calling the transaction code manually same value is appearing ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to refresh the hole screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Mar 2007 12:57:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refreshing-a-screen/m-p/2122046#M444918</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-29T12:57:43Z</dc:date>
    </item>
    <item>
      <title>Re: Refreshing a Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refreshing-a-screen/m-p/2122047#M444919</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; If all the values are referred to workarea , then simply use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR WA_ITAB.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Mar 2007 13:01:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refreshing-a-screen/m-p/2122047#M444919</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-29T13:01:35Z</dc:date>
    </item>
  </channel>
</rss>

