<?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 about timer in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-timer/m-p/1567078#M256191</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can any one ,PLEASE,suggest any ideas of how to design a timer that keeps on ticking for the specific time which would be given statically.and then towards the last 5 min it should flash a message saying that u are left only with 5 min.....i hope i am clear. amn't i? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx in advance,I promise to reward.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 18 Sep 2006 05:56:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-09-18T05:56:40Z</dc:date>
    <item>
      <title>about timer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-timer/m-p/1567078#M256191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can any one ,PLEASE,suggest any ideas of how to design a timer that keeps on ticking for the specific time which would be given statically.and then towards the last 5 min it should flash a message saying that u are left only with 5 min.....i hope i am clear. amn't i? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx in advance,I promise to reward.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Sep 2006 05:56:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-timer/m-p/1567078#M256191</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-18T05:56:40Z</dc:date>
    </item>
    <item>
      <title>Re: about timer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-timer/m-p/1567079#M256192</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anurag,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. &lt;/P&gt;&lt;P&gt;CLOCK ON SCREEN. (Thru write statement)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(This sample code will give an insight&lt;/P&gt;&lt;P&gt;about the concept of TIMER IN ABAP&lt;/P&gt;&lt;P&gt;as compared to other programming languages)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Code : (Just Copy Paste)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT abc NO STANDARD PAGE HEADING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : wa(72) TYPE c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="--------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS my DEFINITION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PUBLIC SECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;METHODS : run_handler FOR EVENT finished OF cl_gui_timer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDCLASS. "my DEFINITION&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA timer TYPE REF TO cl_gui_timer.&lt;/P&gt;&lt;P&gt;DATA myh TYPE REF TO my.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;CLASS my IMPLEMENTATION&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS my IMPLEMENTATION.&lt;/P&gt;&lt;P&gt;METHOD run_handler.&lt;/P&gt;&lt;P&gt;CALL METHOD timer-&amp;gt;run.&lt;/P&gt;&lt;P&gt;PERFORM mylist.&lt;/P&gt;&lt;P&gt;ENDMETHOD. "run_handler&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDCLASS. "my IMPLEMENTATION&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="--------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="---------" /&gt;&lt;P&gt; Init&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CREATE OBJECT timer.&lt;/P&gt;&lt;P&gt;CREATE OBJECT myh.&lt;/P&gt;&lt;P&gt;SET HANDLER myh-&amp;gt;run_handler FOR ALL INSTANCES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;PARAMETERS : a TYPE c.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="------" /&gt;&lt;P&gt; End of selection&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE sy-uzeit TO wa.&lt;/P&gt;&lt;P&gt;WRITE wa.&lt;/P&gt;&lt;P&gt;timer-&amp;gt;interval = '0.5'.&lt;/P&gt;&lt;P&gt;CALL METHOD timer-&amp;gt;run.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="----------------------------" /&gt;&lt;P&gt;FORM mylist.&lt;/P&gt;&lt;P&gt;WRITE sy-uzeit TO wa.&lt;/P&gt;&lt;P&gt;MODIFY LINE 1 LINE VALUE FROM wa.&lt;/P&gt;&lt;P&gt;ENDFORM. "MYLIST&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Sep 2006 05:58:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-timer/m-p/1567079#M256192</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-18T05:58:58Z</dc:date>
    </item>
    <item>
      <title>Re: about timer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-timer/m-p/1567080#M256193</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;Please refer this BLOG :&lt;/P&gt;&lt;P&gt;/people/rich.heilman2/blog/2005/10/18/a-look-at-clguitimer-in-46c&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also have a look at FM SAPGUI_PROGRESS_INDICATOR .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS : Please reward all helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Sep 2006 06:00:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-timer/m-p/1567080#M256193</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-18T06:00:11Z</dc:date>
    </item>
    <item>
      <title>Re: about timer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-timer/m-p/1567081#M256194</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 &amp;gt; 4.6 use class CL_GUI_TIMER&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for 4.6.C look here::&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.apentia-forum.de/viewtopic.php?t=2850&amp;amp;highlight=clguitimer" target="test_blank"&gt;http://www.apentia-forum.de/viewtopic.php?t=2850&amp;amp;highlight=clguitimer&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Sep 2006 06:34:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-timer/m-p/1567081#M256194</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2006-09-18T06:34:52Z</dc:date>
    </item>
  </channel>
</rss>

