This is a test message to test the length of the message box.
Login
Quick - CL_TIMER
Created by Software-Heroes

ABAP Quick - CL_GUI_TIMER

1640

Automated updating of lists, logs or status indicators? No problem for you with our little tip for a simple automation with a SAP standard class.



Our first Quicktipp should deal with the topic of automation of operations. Your user/customer wants to automate a log or a list of what he wants to use as a kind of cockpit? Not so easy in SAP without constantly pressing the Refresh button.

Luckily SAP implemented the CL_GUI_TIMER class, which is easy to use, as you will soon see. For this the following example:


" Create instance
DATA(lo_time) = NEW cl_gui_timer( ).

" Set timer 
lo_time->interval = 5.

" Start
lo_time->run( ).

We create a new instance of the class CL_GUI_TIMER and set the timer to 5 seconds. At the end we start the timer by calling the method RUN. But it's not that easy, because we forgot the most important part. What should actually happen at the end of the timer?

If you've already looked at the class, you'll find that it has an event that you need to register before you start the timer. For this you need a method that records the event and then you have to tell the instance the new created method.


" Definition example
CLASS lcl_app DEFINITION.
  PUBLIC SECTION.
    CLASS-METHODS: handle_finished FOR EVENT finished OF cl_gui_timer.
ENDCLASS.

" Set handler
SET HANDLER handle_finished FOR lo_time.

When the event fires, the handle_finished method is executed. If the timer should start one more time then simply call the RUN method of the class and a new countdown will start.

If you want to cancel the timer before the end is reached, you can easily do it:


" Cancel timer
lo_time->cancel( ).

" Delete timer
lo_time->free( ).

At the end, the timer is aborted and the instance cleared.

 

Conclusion

With the class CL_GUI_TIMER you get a simple and clean way to automate a cockpit or just to update a screen with a check. Definitely a super usefull thing out of the box.


Included topics:
QuickCL_GUI_TIMER
Comments (0)



And further ...

Are you satisfied with the content of the article? We post new content in the ABAP area every Friday and irregularly in all other areas. Take a look at our tools and apps, we provide them free of charge.


ABAP in Practice - String Processing

Category - ABAP

In this practical example we look at the string processing to determine the CDS names in CamelCase and how you can implement this with ABAP.

10/15/2024

ABAP in Practice - Test Driven Development

Category - ABAP

How does TDD actually work in practice and are there simple examples for learning in ABAP? In this exercise we will look at the practical part.

09/24/2024

ABAP in Practice - Merge data sets

Category - ABAP

How do we merge two different data sets in ABAP, especially with regard to Modern ABAP? A practical task for this topic.

09/17/2024

ABAP in Practice - Modern ABAP

Category - ABAP

In this small task we look at existing classic ABAP source code and try to optimize it according to Modern ABAP.

08/27/2024

ABAP Quick - Performance Data Filtering

Category - ABAP

Which statement do you use in ABAP to filter internal tables and is it performant? Read more in this article.

08/13/2024