Skip to Content
0
Former Member
Sep 12, 2007 at 07:11 AM

Short Dump AC_FLUSH_CALL SY-SUBRC = 2

3204 Views

Hi all,

I have an Extension Program for PA30 infotype 0002. The Extension passes a URL string to a Function Module that calls up a browser. We executed the Extension through the Thin Client (Internet/No SAP Installation) and we got the Short Dump with Exception condition "CNTL_ERROR" raised.

000280 CALL FUNCTION 'AC_SYSTEM_FLUSH'

000290 EXCEPTIONS

000300 CNTL_SYSTEM_ERROR = 1

000310 CNTL_ERROR = 2

000320 OTHERS = 3.

000330 THIS_DUMMY_VALUE = 1.

000340 CASE SY-SUBRC.

000350 WHEN 0.

000360 WHEN 1. "// system_error

000370 RAISE CNTL_SYSTEM_ERROR.

000380 WHEN 2. "// method_call_error

-


> RAISE CNTL_ERROR.

000400 WHEN 3. "// property_set_error

000410 RAISE CNTL_ERROR.

000420 WHEN 4. "// property_get_error

000430 RAISE CNTL_ERROR.

000440 WHEN OTHERS.

000450 RAISE CNTL_ERROR.

000460 ENDCASE.

The Extension has no problem executing in the Thick client. But we always get the Error everytime in the Thin Client.

Please help.