Skip to Content
0
Former Member
Jun 30, 2009 at 04:54 AM

Runtime Error "MESSAGE_TYPE_X" occurs

807 Views

Hello.

Runtime Error "MESSAGE_TYPE_X" occurs 0 - 3 times per day.

Please see detail below.

It occurs in add-on transactions and SAP native program "SAPLSMTR_NAVIGATION".

SAP says the latest GUI patch level will solve this problem in OSS.

But as you know, upgrade of patch level is not easy to decide....

They also says they can no action if we can reproduce it.

Althogh we did same operation with same data which terminated before, we could not reproduce.

I can find neither suitable notes nor uisuful threads in SDN.

I have no action to do anymore.

Please give us information!

Thank you in advance!

===========================

ECC 6.0

GUI.................710

Patcj level.......3

SAP BASIS....700

===========================

What happened?

The current application program detected a situation which really

should not occur. Therefore, a termination with a short dump was

triggered on purpose by the key word MESSAGE (type X).

Technical information about the message:

Message class....... "CNDP"

Number.............. 006

User and Transaction

Program............. "SAPLOLEA"

Screen.............. "SAPLSPO1 0500"

Screen line......... 0

Information on where terminated

Termination occurred in the ABAP program "SAPLOLEA" - in "AC_SYSTEM_FLUSH".

The main program was "SAPMZLJP5A1520 ".

In the source code you have the termination point in line 29

of the (Include) program "LOLEAU02".

Source Code Extract

1 FUNCTION AC_SYSTEM_FLUSH .

2 *"----


3 ""Lokale Schnittstelle:

4 *" IMPORTING

5 *" VALUE(CALLED_BY_SYSTEM) TYPE C OPTIONAL

6 *" EXCEPTIONS

7 *" CNTL_SYSTEM_ERROR

8 *" CNTL_ERROR

9 *"----


10 data: sysubrc like sy-subrc.

11

12 CALL FUNCTION 'AC_FLUSH_CALL'

13 EXPORTING

14 SYSTEM_FLUSH = 'X'

15 CALLED_BY_SYSTEM = CALLED_BY_SYSTEM

16 IMPORTING

17 MESSAGE_NR = sysubrc

18 MESSAGE_TEXT = SY-MSGLI.

19

20 sy-subrc = sysubrc.

21

22 CASE SY-SUBRC.

23 WHEN 0.

24 WHEN 1.

25 * system_error

26 MESSAGE ID 'CNDP' TYPE 'X' NUMBER 007 RAISING CNTL_SYSTEM_ERROR.

27 WHEN 2.

28 * method_call_error

>>>>> MESSAGE ID 'CNDP' TYPE 'X' NUMBER 006 RAISING CNTL_ERROR.

30 WHEN 3.