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

Status Message

Former Member
0 Likes
570

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?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
499

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

2 REPLIES 2
Read only

Former Member
0 Likes
499

Hi,

You can use the FM SAPGUI_PROGRESS_INDICATOR

Thanks,

Naren

Read only

Former Member
0 Likes
500

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