‎2014 Jan 02 12:47 PM
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
‎2014 Jan 02 12:54 PM
Hi Sandeep,
Please use below function module.
CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
EXPORTING
PERCENTAGE = SY-TABIX
TEXT = 'Fetching data from table'.
Arivazhagan S
‎2014 Jan 02 12:57 PM
Hi Sandeep,
Please follow the belwo link to fulllfiil your requirement.
http://www.erpgreat.com/fu014.htm
Cheers,
Pravin
‎2014 Jan 02 12:59 PM
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
‎2014 Jan 02 1:21 PM
Hi,
I think you could be interested by the class CL_GUI_TIMER
Cheers,
Manu.
‎2014 Jan 02 1:25 PM