Application Development and Automation 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: 
Read only

Timer in sap abap

Former Member
0 Likes
1,411

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
Read only

arivazhagan_sivasamy
Active Contributor
0 Likes
1,011

Hi Sandeep,

Please use below function module.

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



Arivazhagan S

Read only

Former Member
0 Likes
1,011


Hi Sandeep,

Please follow the belwo link to fulllfiil your requirement.

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

Cheers,

Pravin

Read only

former_member187748
Active Contributor
0 Likes
1,011

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

Read only

Former Member
0 Likes
1,011

Hi,

I think you could be interested by the class CL_GUI_TIMER

Cheers,

Manu.

Read only

RaymondGiuseppi
Active Contributor
0 Likes
1,011

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