cancel
Showing results for 
Search instead for 
Did you mean: 

Run time error STOP_NO_REPORT

Former Member
0 Kudos

Hi Experts,

I used STOP statement in one of my program and these cause me an error.

ELSE.

CALL FUNCTION 'POPUP_TO_DISPLAY_TEXT'

EXPORTING

textline1 = text-001

textline2 = text-003.

STOP.

ENDIF.

These error doesn't occur if the program is created in 4.6 version but when created and executed in ECC6 an error message STOP_NO_REPORT occurs.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

what I know is that the statement STOP is forbidden in methods and leads to an uncatchable exception during the processing of screens called with CALL SCREEN and in programs not called with SUBMIT.

In this case you're calling screen 100 in the FM.

Why don't you use

message i208(00) with text-001.

stop.

endif.

???

Regards,

Anna

Answers (0)