‎2007 Feb 22 8:14 PM
When I run transaction KOB1 from report RKAEP000, a message appears
at the bottom of the report indicating the process of the transaction.
One such message is:
400 items selected, selection continues
How are these messages written to the screen?
‎2007 Feb 22 8:24 PM
Hi,
Check this example..
DATA: v_string TYPE string.
DO 100 TIMES.
v_string = sy-index.
CONCATENATE v_string ' records selected ' INTO v_string
SEPARATED BY space.
CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
EXPORTING
percentage = sy-index
text = v_string.
ENDDO.
Thanks
Naren
‎2007 Feb 22 8:21 PM
‎2007 Feb 22 8:24 PM
Hi,
Check this example..
DATA: v_string TYPE string.
DO 100 TIMES.
v_string = sy-index.
CONCATENATE v_string ' records selected ' INTO v_string
SEPARATED BY space.
CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
EXPORTING
percentage = sy-index
text = v_string.
ENDDO.
Thanks
Naren