Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Timer in sap abap

Former Member
0 Kudos

is it possible to run a timer in abap without freshing the screen again and again.

I have done it using call function in separate task but screen refreshes again & again

so there is some problem with functioning of my application.

If any one have some idea , then plz help.

Thanks

5 REPLIES 5

arivazhagan_sivasamy
Active Contributor
0 Kudos

Hi Sandeep,

Please use below function module.

CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
       EXPORTING
         PERCENTAGE = SY-TABIX
         TEXT       = 'Fetching data from table'.



Arivazhagan S

Former Member
0 Kudos


Hi Sandeep,

Please follow the belwo link to fulllfiil your requirement.

http://www.erpgreat.com/fu014.htm

Cheers,

Pravin

former_member187748
Active Contributor
0 Kudos

Hi Sandeep,

you can do it with some function module , i.e

CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'

EXPORTING

percentage = '60'

text = p_text.


also please see this link, it might help you


ABAP Timers and Auto-refresh

Former Member
0 Kudos

Hi,

I think you could be interested by the class CL_GUI_TIMER

Cheers,

Manu.

raymond_giuseppi
Active Contributor
0 Kudos

Use the search tool, there are already many samples with cl_gui_timer, local application too for oldest version and of course FM in separate task or wait statements...

Regards,

Raymond