<?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 clear screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/clear-screen/m-p/2544171#M578485</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;like in 'C' language we have a command called 'CLRSCR' to the clear screen.&lt;/P&gt;&lt;P&gt;do we have in abap also .&lt;/P&gt;&lt;P&gt;or any another way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please send me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;aejaz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Jul 2007 09:24:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-19T09:24:32Z</dc:date>
    <item>
      <title>clear screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/clear-screen/m-p/2544171#M578485</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;like in 'C' language we have a command called 'CLRSCR' to the clear screen.&lt;/P&gt;&lt;P&gt;do we have in abap also .&lt;/P&gt;&lt;P&gt;or any another way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please send me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;aejaz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2007 09:24:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/clear-screen/m-p/2544171#M578485</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-19T09:24:32Z</dc:date>
    </item>
    <item>
      <title>Re: clear screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/clear-screen/m-p/2544172#M578486</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To reset a variable &amp;lt;f&amp;gt; to the appropriate initial value for its type, use the statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR &amp;lt;f&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement has different effects for different data types: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Elementary ABAP types&lt;/P&gt;&lt;P&gt;The CLEAR statement sets the value of an elementary variable to the initial value specified for its type (see the table in Predefined ABAP Types), and not to the starting value that you specified in the VALUE addition to the DATA statement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;References&lt;/P&gt;&lt;P&gt;The CLEAR statement resets a reference variable to its initial value, that is, so that it does not point to an object. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Structures&lt;/P&gt;&lt;P&gt;The CLEAR statement resets the individual components of a structure to their respective initial values. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Internal tables&lt;/P&gt;&lt;P&gt;The CLEAR statement deletes the entire contents of an internal table (see also Initializing Internal Tables).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You cannot use the CLEAR statement to reset a constant. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA NUMBER TYPE I VALUE '10'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE NUMBER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR NUMBER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE / NUMBER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The output appears as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        10&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The CLEAR statement resets the contents of the field NUMBER from 10 to its initial value 0.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2007 09:27:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/clear-screen/m-p/2544172#M578486</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-19T09:27:45Z</dc:date>
    </item>
    <item>
      <title>Re: clear screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/clear-screen/m-p/2544173#M578487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;i need a command to clear the entire screen.&lt;/P&gt;&lt;P&gt;i think u got me now&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2007 09:30:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/clear-screen/m-p/2544173#M578487</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-19T09:30:14Z</dc:date>
    </item>
    <item>
      <title>Re: clear screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/clear-screen/m-p/2544174#M578488</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 can clear statement in abap.&lt;/P&gt;&lt;P&gt;or initial keyword also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ex: clear a. // value will be erased.&lt;/P&gt;&lt;P&gt;    clear itab. /// work area is cleaerd.&lt;/P&gt;&lt;P&gt;    clear itab[]  /// body of internal table is cleared.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if helpful reward some points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with regards,&lt;/P&gt;&lt;P&gt;Suresh.A&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2007 09:31:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/clear-screen/m-p/2544174#M578488</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-19T09:31:37Z</dc:date>
    </item>
    <item>
      <title>Re: clear screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/clear-screen/m-p/2544175#M578489</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;There is no such command.&lt;/P&gt;&lt;P&gt;One way you can do it like HIDE screen elements. &lt;/P&gt;&lt;P&gt;Use AT SELECTION SCREEN OUTPUT in that modify screen and make elements invisible.&lt;/P&gt;&lt;P&gt;Reward if useful!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2007 09:35:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/clear-screen/m-p/2544175#M578489</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-19T09:35:36Z</dc:date>
    </item>
    <item>
      <title>Re: clear screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/clear-screen/m-p/2544176#M578490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Aejaj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Resets a variable to its initial value. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR &amp;lt;f&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Resets the variable &amp;lt;f&amp;gt;, which may be of any data type, to the initial value defined for that type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the clear statement for clear the moemory space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If useful rewrd points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Sanket.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2007 09:36:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/clear-screen/m-p/2544176#M578490</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-19T09:36:46Z</dc:date>
    </item>
    <item>
      <title>Re: clear screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/clear-screen/m-p/2544177#M578491</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i don't think there is any particular syntax for clearing a screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u can definitely clear a filed and work area and body of internal tables as told by our friends.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;srinivas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;*&lt;STRONG&gt;reward for useful answers&lt;/STRONG&gt;*&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2007 09:37:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/clear-screen/m-p/2544177#M578491</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-19T09:37:27Z</dc:date>
    </item>
    <item>
      <title>Re: clear screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/clear-screen/m-p/2544178#M578492</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You cannot actually clear the screen in ABAP.&lt;/P&gt;&lt;P&gt;However, we can create the illusion that the screen is clear.&lt;/P&gt;&lt;P&gt;if we use the statement 'write : /' around 100 times,&lt;/P&gt;&lt;P&gt;the cursor goes 100 rows below.&lt;/P&gt;&lt;P&gt;This gives an impression that the screen is clear.&lt;/P&gt;&lt;P&gt;However a scrollbar is there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2007 09:45:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/clear-screen/m-p/2544178#M578492</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-19T09:45:17Z</dc:date>
    </item>
    <item>
      <title>Re: clear screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/clear-screen/m-p/2544179#M578493</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi , &lt;/P&gt;&lt;P&gt;  I dont think there is a command like CLRSCR in ABAP :&lt;/P&gt;&lt;P&gt;If you could tell what is your exact requirement may be we could suggest you some alternatives.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Arun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2007 09:48:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/clear-screen/m-p/2544179#M578493</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-19T09:48:33Z</dc:date>
    </item>
  </channel>
</rss>

