Application Development 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: 

Problem with 'SAPGUI_PROGRESS_INDICATOR' in SAP GUI 7.10

markus_theilen
Participant
0 Kudos

Hi!

We have a problem with SAP GUI 7.10 PL 11. When running this little code snipet, the SAP GUI crashes and SM21 mentions a broken pipe while calling writev in niuxi.c

DATA: lv_i type i,
      lv_string type string.

DO 50000 TIMES.
lv_i = lv_i + 1.
lv_string = lv_i.
  CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
   EXPORTING
*     PERCENTAGE       = 0
     text             = lv_string.
            .

ENDDO.

Can anyone confirm this problem or is it solved with a higher patch level ?

Thank you,

Markus

2 REPLIES 2

RMW
Advisor
Advisor
0 Kudos

Hello Markus,

this code snippet would be perfect to be added to an official bug report created at http://service.sap.com/message on component BC-FES-GUI.

Best regards

Rolf-Martin

Former Member
0 Kudos

Perhaps see Note 147636 concerning calling the FM too often.

Also see Note 109533 concerning use of SAP function modules.

Good Luck,

Aaron