2008 Jun 24 11:10 AM
Hi All,
Can any body please help me by providing code for displaying progress indicator in ALV report?
Thanks in advance.
Tamal Roy
2008 Jun 24 11:12 AM
You can use function module 'SAPGUI_PROGRESS_INDICATOR' to display progress indicator.
Hi All,
Can any body please help me by providing code for displaying progress indicator in ALV report?
Thanks in advance.
Tamal Roy
2008 Jun 24 11:12 AM
You can use function module 'SAPGUI_PROGRESS_INDICATOR' to display progress indicator.
2008 Jun 24 11:13 AM
Hi Biswajit,
U need to use this function module 'SAPGUI_PROGRESS_INDICATOR'
Please check this code
DATA: A LIKE SY-UCOMM.
DO 100 TIMES.
DO 300 TIMES.
GET TIME.
ENDDO.
A(3) = SY-INDEX.A+3 = '%'.
CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
EXPORTING
PERCENTAGE = SY-INDEX
TEXT = A.
ENDDO.
Best regards,
raam
2008 Jun 24 11:24 AM
Hi,
check this link....[http://www.sapdev.co.uk/programs/custom/zp_postcode.htm]