‎2007 Oct 24 2:53 AM
Hi,
I was viewing a document in the transaction SDV (Document Viewer). I chose Viewer -> Loader Preferences and there was the RAISE_EXCEPTION error: "Exception condition "CNTL_ERROR" raised".
THe error came from the following code of CL_GUI_CFW====================CM00P:
000020 METHOD UPDATE_VIEW.
000030 * ...
000040 CALL FUNCTION 'AC_SYSTEM_FLUSH'
000050 exporting CALLED_BY_SYSTEM = called_by_system
000060 EXCEPTIONS
000070 CNTL_SYSTEM_ERROR = 1
000080 CNTL_ERROR = 2
000090 OTHERS = 3.
000100
000110 CASE SY-SUBRC.
000120 WHEN 0.
000130 WHEN 1. "// system_error
000140 RAISE CNTL_SYSTEM_ERROR.
000150 WHEN 2. "// method_call_error
> RAISE CNTL_ERROR.
000170 WHEN 3. "// property_set_error
000180 RAISE CNTL_ERROR.
000190 WHEN 4. "// property_get_error
000200 RAISE CNTL_ERROR.
000210 WHEN OTHERS.
000220 RAISE CNTL_ERROR.
Can anyone help me with this?
‎2007 Oct 24 3:01 AM
Can you rerun and see if you are getting dump again?
Looks like system was trying to flush and got the dump. Please try again and let me know.
ashish
‎2007 Oct 24 3:49 AM
‎2007 Oct 24 4:01 AM
This error is not related to the transaction.
Check these threads where they have discussed similar error. Looks like it is related to basis, can you check with basis resources?
http://www.sapfans.com/forums/viewtopic.php?p=890436&sid=6e0fd5220b36863b6232b87e9c11305f
ashish
‎2007 Oct 24 7:00 AM
‎2007 Oct 24 7:04 AM
Joseph,
I have searched for this error and it has occurred in various scenarios. I am not able to figure out what causes this error. You probably might have to check with your basis or write to SAP.
ashish
‎2007 Oct 24 6:57 AM