‎2009 Sep 17 7:40 AM
Hi Experts,
I Have One Tcode, When I Execute my Tcode Then I Want Progress Bar Idicator.
I Know The Function Module 'SAPGUI_PROGRESS_INDICATOR' but I Don't Know How to Use It.
Please Give Me Suggistions or Example For Progress Bar Indicator.
Thanks.
‎2009 Sep 17 7:48 AM
Moved thread to ABAP Development » ABAP, General since it has nothing to do with DB2.
Regards,
Thomas
‎2009 Sep 17 7:48 AM
Moved thread to ABAP Development » ABAP, General since it has nothing to do with DB2.
Regards,
Thomas
‎2009 Nov 13 7:16 AM
‎2009 Nov 13 9:57 AM
Hi,
take this as an example:
DATA: max_records TYPE i VALUE 10000,
act_records TYPE i,
percentage TYPE p,
percentage_text TYPE string,
message TYPE string.
DO 10000 TIMES.
act_records = sy-index.
percentage = act_records / max_records * 100.
percentage_text = percentage.
CONCATENATE percentage_text '% processed' INTO message.
CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
EXPORTING
percentage = percentage
text = message.
ENDDO.
Regards
Markus
Edited by: Markus Stange on Nov 13, 2009 10:58 AM