cancel
Showing results for 
Search instead for 
Did you mean: 

Shortdump (MESSAGE_TYPE_X) when starting GUI 710 on Vista

Former Member
0 Kudos

Hi everyone,

I have just downloaded and installed the SAP GUI 710 and patches level 6 onto my workstation running on Vista. I downloaded everything from ftp.sap.com/pub/sapgui/win/710/.

The installation seemed to go well, but when I connected to my customer's system (4.7), I got a MESSAGE_TYPE_X shortdump instead of the user menu. I do not think it matters, but I connect to my customer's system using an ftp connection. I tried uninstalling and re-installing the GUI many times, and sometimes I got a FRONTEND_ERROR shortdump instead of MESSAGE_TYPE_X. Once I even seemed to get it to work, but the next time I started the computer I got the shortdump again.

The termination occurred in the ABAP program "SAPLOLEA" in "AC_SYSTEM_FLUSH".

The main program was "SAPLSMTR_NAVIGATION ".

Sorry if there is already a thread handling this problem, I couls not find it..

Any help would be very much appreciated!

Thanks, Florence

Here is the shortdump:

Runtime errors MESSAGE_TYPE_X

Occurred on 25.02.2008 at 14:46:40

-


The current application triggered a termination with a short dump.

-


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).

-


What can you do?

-


Print out the error message (using the "Print" function)

and make a note of the actions and input that caused the

error.

To resolve the problem, contact your SAP system administrator.

You can use transaction ST22 (ABAP Dump Analysis) to view and administer

termination messages, especially those beyond their normal deletion

date.

-


Error analysis

-


Short text of error message:

Control Framework : Error processing control

Technical information about the message:

Diagnosis

An error occurred when the system tried to process the commands

from the Automation Queue on the presentation server.

There are several possible reasons for this:

- The installation of the SAP GUI on the presentation server is

faulty or obsolete.

- There is an error in the application program

- There is an error in the SAPGUI or an integrated control

Procedure

1. Make sure that you have imported the appropriate Support

Package, the current kernel, and GUI patch for the release of your

system

2. Check whether the error occurs locally on one or a few PCs, or

generally on all PCs. Note whether the error only occurs for some

users, for example because of a specific Customizing setting.

If it only occurs locally, this suggests an installation problem

with the PC. Check the installation; if necessary, reinstall the

software. In the dump, search for the SY-MSGLI field, since it may

point to the cause of the error.

3. Activate the Automation Trace (in accordance with SAP Note

158985).

4.Start the transaction and continue until the screen immediately

before the dump.

5. From the System -> Utilities menu, choose Autom. Queue,

Synchronous Processing.

The status bar of the GUI displays the text:

"Automation synchron flush mode on"

6. If you now proceed with the application, the short dump will

display the ABAP call that caused the error; the Automation Trace

will contain the error on the presentation server.

7. If necessary, load the short dump and trace files on to

sapservX, so that SAP can analyze them.

Message classe...... "CNDP"

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

Variable 1.......... " "

Variable 2.......... " "

Variable 3.......... " "

Variable 4.......... " "

Variable 3.......... " "

Variable 4.......... " "

-


How to correct the error

-


Probably the only way to eliminate the error is to correct the program.

-

You may able to find an interim solution to the problem

in the SAP note system. If you have access to the note system yourself,

use the following search criteria:

-


"MESSAGE_TYPE_X" C

"SAPLOLEA" or "LOLEAU02"

"AC_SYSTEM_FLUSH"

-


If you cannot solve the problem yourself, please send the

following documents to SAP:

1. A hard copy print describing the problem.

To obtain this, select the "Print" function on the current screen.

-

2. A suitable hardcopy prinout of the system log.

To obtain this, call the system log with Transaction SM21

and select the "Print" function to print out the relevant

part.

3. If the programs are your own programs or modified SAP programs,

supply the source code.

To do this, you can either use the "PRINT" command in the editor or

print the programs using the report RSINCL00.

4. Details regarding the conditions under which the error occurred

or which actions and input led to the error.

-


System environment

-


SAP Release.............. "620"

Application server....... "leadev"

Network address.......... "192.168.4.55"

Operating system......... "Windows NT"

Release.................. "5.2"

Hardware type............ "4x Intel 801586"

Character length......... 16 Bits

Pointer length........... 32 Bits

Work process number...... 0

Short dump setting....... "full"

Database server.......... "LEADEV"

Database type............ "ORACLE"

Database name............ "DEV"

Database owner........... "SAPDEV"

Character set............ "C"

SAP kernel............... "640"

Created on............... "Aug 17 2004 23:25:04"

Created in............... "NT 5.0 2195 Service Pack 4 x86 MS VC++ 13.10"

Database version......... "OCI_920_SHARE "

Patch level.............. "31"

Patch text............... " "

Supported environment....

Database................. "ORACLE 8.1.7.., ORACLE 9.2.0.."

SAP database version..... "640"

Operating system......... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2"

-


User, transaction...

-


Client.............. 210

User................ "TIM"

Language key........ "E"

Transaction......... " "

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

Screen.............. "SAPLSMTR_NAVIGATION 0100"

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

-


Information on where termination occurred

-


The termination occurred in the ABAP program "SAPLOLEA" in "AC_SYSTEM_FLUSH".

The main program was "SAPLSMTR_NAVIGATION ".

The termination occurred in line 35 of the source code of the (Include)

program "LOLEAU02"

of the source code of program "LOLEAU02" (when calling the editor 350).

-


Source code extract

-


000050 *" VALUE(CALLED_BY_SYSTEM) TYPE C OPTIONAL

000060 *" EXCEPTIONS

000070 *" CNTL_SYSTEM_ERROR

000080 *" CNTL_ERROR

000090 *"----


000100 data: sysubrc like sy-subrc.

000110

000120 CALL FUNCTION 'AC_FLUSH_CALL'

000130 EXPORTING

000140 SYSTEM_FLUSH = 'X'

000150 CALLED_BY_SYSTEM = CALLED_BY_SYSTEM

000160 IMPORTING

000170 MESSAGE_NR = sysubrc

000180 MESSAGE_TEXT = SY-MSGLI.

000190

000200 sy-subrc = sysubrc.

000210

000220 CASE SY-SUBRC.

000230 WHEN 0.

000240 WHEN 1.

000250 * system_error

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

000270 WHEN 2.

000280 * method_call_error

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

000300 WHEN 3.

000310 * property_set_error

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

000330 WHEN 4.

000340 * property_get_error

-


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

000360 WHEN OTHERS.

000370 RAISE CNTL_ERROR.

000380 ENDCASE.

000390

000400 ENDFUNCTION.

-


Contents of system fields

-


SY field contents..................... SY field contents.....................

-


-


-


-


SY-SUBRC 4 SY-INDEX 0

SY-TABIX 8 SY-DBCNT 1

SY-FDPOS 0 SY-LSIND 0

SY-PAGNO 0 SY-LINNO 1

SY-COLNO 1 SY-PFKEY SESSION_ADMIN

SY-UCOMM SY-TITLE SAP Easy Access

SY-MSGTY X SY-MSGID CNDP

SY-MSGNO 006 SY-MSGV1

SY-MSGV2 SY-MSGV3

SY-MSGV4

-


Active calls / events

-


No.... Type........ Name..........................

Program

Include Line

Class

-


4 FUNCTION AC_SYSTEM_FLUSH

SAPLOLEA

LOLEAU02 35

3 FORM HANDLE_FLUSH_PBO

SAPFGUICNTL

SAPFGUICNTL 256

2 FORM %_CTL_OUTPUT

SAPMSSYD

SAPMSSYD 155

1 MODULE (PBO) %_CTL_OUTPUT

SAPLSMTR_NAVIGATION

<SYSINI> 29

-


Chosen variables

-


-


4 FUNCTION AC_SYSTEM_FLUSH

SAPLOLEA

LOLEAU02 35

-


CALLED_BY_SYSTEM X

5

8

0

0

SY-MSGV3

2222222222222222222222222222222222222222

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

... + 40

2222222222

0000000000

0000000000

0000000000

SY-MSGV4

2222222222222222222222222222222222222222

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

... + 40

2222222222

0000000000

0000000000

0000000000

OLE2_TYPE_UNKNOWN 13

0000

D000

TOLE-APP SAPGUI.APPLICATION

54545424554444544422222222222222

310759E100C93149FE00000000000000

00000000000000000000000000000000

00000000000000000000000000000000

SY-SUBRC 4

0000

4000

%_SPACE

2

0

0

0

SY-REPID SAPLOLEA

5454444422222222222222222222222222222222

310CFC5100000000000000000000000000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

SY-XFORM XAB_READ

544554442222222222222222222222

812F25140000000000000000000000

000000000000000000000000000000

000000000000000000000000000000

SY-MSGID CNDP

44452222222222222222

3E400000000000000000

00000000000000000000

00000000000000000000

OLE2_TYPE_I1 16

1000

0000

VERBS

2222222222222222222222222222222222222222

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

... + 40

2222222222222

0000000000000

0000000000000

0000000000000

SPACE

2

0

0

0

SY-MSGNO 006

333

006

000

000

OLE2_TYPE_UI2 18

1000

2000

SY-MSGV1

2222222222222222222222222222222222222222

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

... + 40

2222222222

0000000000

0000000000

0000000000

SY-MSGV2

2222222222222222222222222222222222222222

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

... + 40

2222222222

0000000000

0000000000

0000000000

SYST-REPID SAPLOLEA

5454444422222222222222222222222222222222

310CFC5100000000000000000000000000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

-


3 FORM HANDLE_FLUSH_PBO

SAPFGUICNTL

SAPFGUICNTL 256

-


L_FLAG_OO X

5

8

0

0

L_FLAG_FB X

5

8

0

0

SYST-REPID SAPFGUICNTL

5454454445422222222222222222222222222222

31067593E4C00000000000000000000000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

%_DUMMY$$

2222

0000

0000

0000

L_NUM 0

0000

0000

SPACE

2

0

0

0

G_CC ## #

0020

0000

0000

0000

SY-SUBRC 4

0000

4000

SY-REPID SAPFGUICNTL

5454454445422222222222222222222222222222

31067593E4C00000000000000000000000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

G_CC-DEL

2

0

0

0

-


2 FORM %_CTL_OUTPUT

SAPMSSYD

SAPMSSYD 155

-


SY-DYNNR 0100

3333

0100

0000

0000

P_REPID SAPLSMTR_NAVIGATION

5454545554454445444222222222222222222222

310C3D42FE1697149FE000000000000000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

%_DUMMY$$

2222

0000

0000

0000

L_DYNPRO_CONTROLS

2

0

0

0

%_SPACE

2

0

0

0

SY-SUBRC 4

0000

4000

SY-REPID SAPMSSYD

5454555422222222222222222222222222222222

310D339400000000000000000000000000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

G_EMERGENCY N

4

E

0

0

-


1 MODULE (PBO) %_CTL_OUTPUT

SAPLSMTR_NAVIGATION

<SYSINI> 29

-


%_DUMMY$$

2222

0000

0000

0000

SY-REPID SAPLSMTR_NAVIGATION

5454545554454445444222222222222222222222

310C3D42FE1697149FE000000000000000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

-


Application Calls

-


No dump information available

-


Application Information

-


No dump information available

-


Internal notes

-


The termination occurred in the function "ab_jmess" of the SAP

Basis System, specifically in line 1132 of the module

"//bas/640_REL/src/krn/runt/abdynpro.c#12".

The internal operation just processed is "MESS".

The internal session was started at 20080225144638.

-


Active calls in SAP kernel

-


SAP (R) - R/3(TM) Callstack, Version 1.0

Copyright (C) SAP AG. All rights reserved.

Callstack without Exception:

App : disp+work.EXE (pid=4048)

When : 2/25/2008 14:46:40.941

Threads : 2

Computer Name : LEADEV

User Name : SAPServiceDEV

Number of Processors: 4

Processor Type: x86 Family 15 Model 3 Stepping 4

Windows Version : 5.2 Current Build: 3790

State Dump for Thread Id f24

eax=000fb040 ebx=00000000 ecx=3ccf2e10 edx=00000000 esi=003aa904 edi=003aa8d8

eip=7ffe0304 esp=0399ca6c ebp=0399d2ac iopl=0 nv up ei pl zr na po nc

cs=001b ss=0023 ds=0023 es=0023 fs=003b gs=0000 efl=00000246

function : <nosymbols>

7ffe02f0 0000 add [eax],al ds:000fb040=??

7ffe02f2 0000 add [eax],al ds:000fb040=??

7ffe02f4 0000 add [eax],al ds:000fb040=??

7ffe02f6 0000 add [eax],al ds:000fb040=??

7ffe02f8 0000 add [eax],al ds:000fb040=??

7ffe02fa 0000 add [eax],al ds:000fb040=??

7ffe02fc 0000 add [eax],al ds:000fb040=??

7ffe02fe 0000 add [eax],al ds:000fb040=??

7ffe0300 8bd4 mov edx,esp

7ffe0302 0f34 ???

7ffe0304 c3 ret

7ffe0305 9c pushfd

7ffe0306 810c2400010000 or dword ptr [esp],0x100 ss:0399ca6c=0399d2ac

7ffe030d 9d popfd

7ffe030e c3 ret

7ffe030f 90 nop

7ffe0310 90 nop

7ffe0311 90 nop

7ffe0312 90 nop

7ffe0313 90 nop

7ffe0314 90 nop

7ffe0315 90 nop

FramePtr ReturnAd Param#1 Param#2 Param#3 Param#4 Function Name

0399d2ac 00f5a918 7c38b5c8 00000002 00000001 00000000 <nosymbols>

0399d33c 0053b430 0053b469 7c38b5c8 7c38b5c8 7c38b5c8 disp+work!NTDebugProcess >

> [ntstcdbg.c (388)]

0399d340 0053b469 7c38b5c8 7c38b5c8 7c38b5c8 0174c8e8 disp+work!NTStack >

> [dptstack.c (1365)]

0399d35c 0053b49d 7c38b5c8 00000000 0082a944 7c38b5c8 disp+work!CTrcStack2 >

> [dptstack.c (352)]

0399d368 0082a944 7c38b5c8 00000000 005f0059 00300030 disp+work!CTrcStack >

> [dptstack.c (182)]

0399d38c 0082e55d 00000032 000000cd 0399d4c4 00000034 disp+work!rabax_CStackSave >

> [abrabax.c (6823)]

0399d4a0 00812d41 0120537c 0120535c 0000046c 2063d198 disp+work!ab_rabax >

> [abrabax.c (993)]

0399d4cc 006fb549 00000000 3cc900f8 00000000 47c2c6c0 disp+work!ab_jmess >

> [abdynpro.c (1122)]

0399d570 00785436 00000000 3cc900f8 01fd3b30 7c3701d8 disp+work!ab_extri >

> [abextri.c (431)]

0399d584 00813906 00000000 7c36a4b4 005788fb 3cc91108 disp+work!ab_xevent >

> [abrunt1.c (261)]

0399d590 005788fb 3cc91108 00000002 00002c58 0399d5e8 disp+work!ab_dstep >

> [abdynpro.c (460)]

0399d5ac 00578ca7 0176c72c 0000000c 7c36a4b4 3cc900f8 disp+work!dynpscal >

> [dymainstp.c (2418)]

0399d5e8 00579271 3cc900f8 3cc900f8 7c36a4b4 00000000 disp+work!dynpctlcal >

> [dymainstp.c (2570)]

0399d61c 0057a173 3cc900f8 3cc900f8 00000003 0399fd08 disp+work!dynpout0 >

> [dymainstp.c (4212)]

0399d638 0054ee5d 3cc900f8 00000002 00000001 00000000 disp+work!dynprctl >

> [dymainstp.c (350)]

0399fd08 00475d78 00000002 0399fee8 00000001 00498dd8 disp+work!dynpen00 >

> [dymain.c (1375)]

0399fd18 00498dd8 00000002 00000000 00000000 00000002 disp+work!Thdynpen00 >

> [thxxhead.c (4364)]

0399fee8 00499194 00000001 003a6118 03990000 00426a5b disp+work!TskhLoop >

> [thxxhead.c (4128)]

0399ff04 0042235e 00000000 7ffdf000 0399ff60 00401054 disp+work!tskhstart >

> [thxxhead.c (1039)]

0399ff14 00401054 00000003 003a6118 00000001 00000000 disp+work!DpMain >

> [dpxxdisp.c (1009)]

0399ff60 010bb613 00000003 003a6118 003a6b20 01619000 disp+work!nlsui_main >

> [thxxanf.c (58)]

0399ffc0 77e4f38c 00000000 00000000 7ffdf000 00000000 disp+work!wmainCRTStartup >

> [crtexe.c (395)]

0399fff0 00000000 010bb4d0 00000000 00905a4d 00000003 kernel32!TerminateThread

State Dump for Thread Id d9c

eax=00000000 ebx=00000103 ecx=003a8e68 edx=00000000 esi=00000000 edi=00000000

eip=7ffe0304 esp=0571feb0 ebp=0571fef4 iopl=0 nv up ei pl zr na po nc

cs=001b ss=0023 ds=0023 es=0023 fs=003b gs=0000 efl=00000246

function : <nosymbols>

7ffe02f0 0000 add [eax],al ds:00000000=??

7ffe02f2 0000 add [eax],al ds:00000000=??

7ffe02f4 0000 add [eax],al ds:00000000=??

7ffe02f6 0000 add [eax],al ds:00000000=??

7ffe02f8 0000 add [eax],al ds:00000000=??

7ffe02fa 0000 add [eax],al ds:00000000=??

7ffe02fc 0000 add [eax],al ds:00000000=??

7ffe02fe 0000 add [eax],al ds:00000000=??

7ffe0300 8bd4 mov edx,esp

7ffe0302 0f34 ???

7ffe0304 c3 ret

7ffe0305 9c pushfd

7ffe0306 810c2400010000 or dword ptr [esp],0x100 ss:0571feb0=77f42845

7ffe030d 9d popfd

7ffe030e c3 ret

7ffe030f 90 nop

7ffe0310 90 nop

7ffe0311 90 nop

7ffe0312 90 nop

7ffe0313 90 nop

7ffe0314 90 nop

7ffe0315 90 nop

FramePtr ReturnAd Param#1 Param#2 Param#3 Param#4 Function Name

0571feac 77f42845 77e60226 000006b0 00000000 00000000 <nosymbols>

0571fef4 0101cd58 000006b0 00000000 00000000 003a8f00 ntdll!NtFsControlFile

0571ff84 7c349565 00000000 00000000 00000000 003a8e68 disp+work!SigIMsgFunc >

> [signt.c (563)]

0571ffb8 77e4a990 003a8e68 00000000 00000000 003a8e68 MSVCR71!endthreadex

0571ffec 00000000 7c3494f6 003a8e68 00000000 00000000 kernel32!FlsSetValue

-


List of ABAP programs affected

-


-


Type

Program

Gen. Date Time

Load Size

-


Prg

SAPLSMTR_NAVIGATION

19.11.2004 10:40:05

208896

Prg

SAPMSSYD

05.06.2002 17:09:33

18432

Prg

SAPFSYSCALLS

14.02.2002 14:22:47

7168

Typ

PRGN_CUST

30.03.1998 10:02:50

2048

Prg

SAPLSMTR_NAVIGATION_MODULES

19.11.2004 10:52:01

168960

Typ

AGR_DATEU

30.08.2001 17:56:20

3072

Prg

SAPLSFES

19.11.2004 10:53:47

190464

Prg

SAPLSPLUGIN

14.02.2002 14:22:48

8192

Typ

SSM_CUST

07.05.1997 13:49:15

2048

Prg

SAPLSGUI

09.01.2003 17:15:12

38912

Typ

SSM_COL

02.11.1998 09:56:19

2048

Typ

SYS_MENU

10.03.1999 18:59:21

2048

Typ

CVERS

09.11.2000 14:05:49

2048

Prg

SAPLPRGN_AUTH

16.06.2004 11:37:39

83968

Typ

AGR_USERS

20.01.2003 16:27:01

3072

Prg

SAPLSUU6

16.06.2004 11:37:39

182272

Typ

USBAPILINK

23.04.1998 15:10:08

2048

Typ

USZBVLNDSC

23.04.1998 15:10:16

2048

Typ

USZBVLNDRC

21.12.1999 19:20:38

3072

Typ

T000

11.09.1997 10:17:18

4096

Typ

AGR_HIER

30.11.1999 10:16:40

4096

Typ

AGR_DEFINE

30.08.2001 17:56:21

4096

Typ

USERS_SSM

14.02.1998 17:01:24

2048

Typ

PRGN_SSM

14.02.1998 16:59:05

2048

Prg

SAPLSMTR_NAVIGATION_SIMULATION

14.02.2002 14:22:48

13312

Typ

USRBF2

17.06.1998 03:27:39

2048

Typ

UST12

25.03.1999 15:43:13

3072

Prg

SAPLPRGN_URL_GENERATION

10.04.2003 14:40:16

62464

Typ

URL_EXITS

21.12.1999 19:20:38

5120

Prg

SAPLICON

02.07.2003 13:17:13

27648

Prg

%_CICON

14.02.2002 14:22:46

89088

Prg

SAPLSUSM

19.11.2004 10:40:35

29696

Typ

USR21

10.03.1999 18:32:06

3072

Typ

USR03

12.05.1997 16:51:23

6144

Prg

SAPLSUGS

17.04.2003 16:08:10

35840

Prg

SAPLSUG2

21.11.2002 10:20:34

44032

Typ

SVERS

30.07.1992 18:39:23

2048

Typ

UVERS

09.11.2000 14:16:07

4096

Typ

V_ADDR_USR

27.08.1999 18:32:38

23552

Typ

TSAD3T

14.02.1998 17:01:10

2048

Typ

SMENFAVDAT

30.08.2001 17:57:31

2048

Prg

CL_GUI_CONTROL================CP

05.06.2002 17:02:46

115712

Prg

%_CCNTL

14.02.2002 14:22:46

16384

Typ

OBJ_RECORD

14.02.1998 08:30:43

2048

Prg

CL_GUI_OBJECT=================CP

07.01.2003 18:31:23

379904

Typ

OBJ_RECORD

14.02.1998 08:30:43

2048

Prg

CL_GUI_CFW====================CP

19.11.2004 10:42:21

173056

Prg

CL_GUI_PROPS_CONSUMER=========CP

07.01.2003 18:26:56

30720

Prg

SAPLTHFB

19.11.2004 10:48:24

343040

Prg

SAPLSTTM

22.06.2004 14:54:52

84992

Prg

SAPLSBDC

07.01.2003 18:31:25

44032

Prg

CL_DYNAMIC_GUI_EXTENSIONS=====CP

14.02.2002 14:22:46

37888

Prg

SAPLOLEA

19.11.2004 10:54:18

90112

Typ

OBJ_RECORD

14.02.1998 08:30:43

2048

Typ

TOLE

29.07.1998 19:56:01

3072

Prg

%_COLE2

14.02.2002 14:22:46

11264

Prg

CL_ABAP_CHAR_UTILITIES========CP

19.11.2004 10:44:00

14336

Typ

OLE_PA

04.04.1995 16:02:19

2048

Prg

SAPLSCP2

19.11.2004 10:53:28

141312

Typ

SWCONT

04.04.1995 16:18:01

3072

Typ

SWCBCONT

15.11.2000 17:55:11

3072

Prg

CL_GUI_CUSTOM_CONTAINER=======CP

14.02.2002 14:22:46

46080

Typ

CFW_LINK

01.12.1999 12:16:48

3072

Prg

CL_GUI_CONTAINER==============CP

14.02.2002 14:22:46

58368

Prg

SAPLCNTH

14.02.2002 14:22:47

29696

Prg

SAPFGUICNTL

09.01.2003 17:18:52

23552

Prg

CL_GUI_SPLITTER_CONTAINER=====CP

14.02.2002 14:22:46

69632

Prg

CL_GUI_SIMPLE_CONTAINER=======CP

14.02.2002 14:22:46

44032

Prg

CL_GUI_LIST_TREE==============CP

14.02.2002 14:22:46

80896

Prg

CL_ITEM_TREE_CONTROL==========CP

14.02.2002 14:22:46

112640

Prg

CL_TREE_CONTROL_BASE==========CP

14.02.2002 14:22:46

116736

Typ

TREEV_HHDR

14.02.2002 14:05:10

3072

Typ

TREEV_LHDR

14.02.2002 14:05:11

3072

Prg

CL_ABAP_TYPEDESCR=============CP

19.11.2004 10:51:36

26624

Prg

CL_ABAP_ELEMDESCR=============CP

19.11.2004 10:52:14

25600

Prg

CL_ABAP_DATADESCR=============CP

10.05.2004 12:23:08

18432

Prg

CL_ABAP_REFDESCR==============CP

10.05.2004 12:23:34

19456

Prg

CL_ABAP_STRUCTDESCR===========CP

19.11.2004 10:52:14

25600

Prg

CL_ABAP_COMPLEXDESCR==========CP

10.05.2004 12:23:08

16384

Prg

CL_ABAP_TABLEDESCR============CP

10.05.2004 12:23:34

21504

Prg

CL_ABAP_CLASSDESCR============CP

10.05.2004 12:23:34

28672

Prg

CL_ABAP_OBJECTDESCR===========CP

10.05.2004 12:23:34

30720

Prg

CL_ABAP_INTFDESCR=============CP

10.05.2004 12:23:08

24576

Prg

CL_ABAP_SOFT_REFERENCE========CP

29.03.2001 16:42:12

9216

Prg

CL_ABAP_REFERENCE=============CP

14.02.2002 14:22:46

7168

Prg

SAPLWB_INITIAL_TOOL

19.11.2004 10:51:38

53248

Prg

CL_GUI_PICTURE================CP

07.01.2003 18:46:25

51200

Prg

SAPLCNDP

19.11.2004 10:51:56

183296

Prg

SAPLSHTM

19.11.2004 10:47:37

69632

Typ

WWWPARAMS

15.11.2000 18:03:24

3072

Prg

SAPLSLI1

14.07.2003 13:51:44

31744

Prg

CL_DATAPROVIDER===============CP

14.02.2002 14:22:46

50176

Prg

CL_DRAGDROP===================CP

14.02.2002 14:22:46

38912

Typ

SMENSAPLNG

01.02.2000 09:29:19

5120

Typ

SMENSAPLNT

10.11.1998 05:41:56

2048

Typ

SMENSAPFAV

15.11.2000 17:54:12

4096

Typ

SMENSAPT

16.07.1997 14:45:44

2048

Typ

USR01

14.02.1998 15:22:01

4096

Typ

START_GUID

15.01.1999 16:51:42

3072

Prg

SAPLSHI1

10.05.2004 12:29:45

230400

Typ

HIER_MESS

18.09.2001 10:02:50

4096

Typ

TTREE

07.01.2003 18:24:55

5120

Typ

TADIR

09.11.2000 14:14:40

4096

Typ

TTREET

30.11.1998 15:53:56

3072

Prg

SAPLSMNU_NEW

29.04.2003 15:10:48

79872

Typ

SMENSAPNEW

15.11.2000 17:54:12

4096

Prg

SAPLSHI2

19.11.2004 10:54:24

178176

Prg

SAPLSHI6

19.11.2004 10:44:40

512000

Typ

STREEPROP

08.04.1999 16:05:21

2048

Typ

TTREETYPE

15.11.2000 17:58:06

4096

Prg

SAPLSEUF

19.11.2004 10:40:29

309248

Typ

TFDIR

29.07.1998 19:49:08

3072

Prg

SAPMS38L

19.11.2004 10:45:16

629760

Typ

RS38L

19.11.2001 15:47:56

30720

Typ

ENLFDIR

09.11.2000 14:07:35

3072

Typ

RSINFDIR

29.07.1998 19:07:56

3072

Typ

TNODE01

29.03.2001 16:11:09

9216

Typ

TNODE01R

29.03.2001 16:05:53

5120

Typ

HIER_INACT

14.10.1999 21:56:54

2048

Typ

TNODE01T

15.11.2000 17:57:39

3072

Prg

SAPLSHI5

16.06.2004 11:40:22

69632

Typ

TREENAMESP

14.02.1998 14:16:31

3072

Prg

SAPLSHI3

19.11.2004 10:42:08

196608

Typ

TTREES

14.02.1998 05:27:02

2048

Prg

SAPLSHI9

19.11.2004 10:54:03

39936

Typ

TTREELOADS

14.02.1998 14:33:46

2048

Typ

HIER_IFACE

18.12.2001 16:53:05

11264

Prg

SAPLSHI10

19.11.2004 10:48:21

165888

Typ

HIER_NODES

14.02.1998 07:29:35

2048

Typ

TRTYPEH

15.11.2000 17:57:59

5120

Typ

TTREELOADT

14.02.1998 14:33:59

2048

Typ

HIER_TEXTS

09.11.2000 14:07:58

3072

Prg

SAPMSSY0

19.11.2004 10:53:07

81920

Prg

SAPLSPIAGENTCW

10.05.2004 12:34:34

11264

Prg

SAPLSPILS

19.11.2004 10:42:52

53248

Prg

CL_OS_TRANSACTION_END_NOTIFIERCP

26.03.2003 09:04:00

12288

Prg

CL_SYSTEM_TRANSACTION_STATE===CP

19.11.2004 10:42:52

64512

Prg

SAPLBMEN

22.06.2004 14:55:21

368640

Typ

TSTC

20.08.1998 11:09:07

2048

Typ

SMEN_BUFFI

09.11.2000 14:22:34

3072

Typ

SMEN_BUFFC

10.03.1999 18:42:46

4096

Typ

FAVORITES

28.08.1997 08:47:54

3072

Typ

SBJTREEITM

14.02.2002 14:04:47

5120

Prg

SAPLCNTL

14.02.2002 14:22:47

303104

Typ

TREEV_NODE

14.02.2002 14:05:11

4096

Typ

RFC_FIELDS

20.08.1998 10:56:34

3072

Typ

DFIES

09.11.2000 14:07:05

9216

Prg

SAPLSDIFRUNTIME

10.05.2004 12:25:09

95232

Typ

DDFIXVALUE

27.08.1999 18:04:56

2048

Typ

X031L

15.11.2000 18:03:28

6144

Prg

SAPLSDNT

19.11.2004 10:54:33

221184

Typ

X030L

15.11.2000 18:03:24

6144

Typ

DD03P

19.11.2001 15:46:27

12288

Typ

DD05M

09.11.2000 14:06:49

4096

Typ

DD08V

20.08.1998 11:35:49

4096

Typ

DD12V

20.08.1998 11:35:57

5120

Typ

DD17V

20.08.1998 10:50:57

3072

Typ

DD35V

01.03.2001 12:21:53

2048

Typ

DD36M

01.03.2001 12:38:06

5120

Prg

SAPLSDTB

19.11.2004 10:54:33

409600

Typ

DDCACHE

30.03.1995 13:12:06

2048

Typ

DCTABDGET

13.05.1997 12:49:28

2048

Typ

DD02V

19.11.2001 15:50:56

7168

Prg

SAPLSDSG

07.01.2003 18:38:57

123904

Prg

RADBTDDO

14.02.2002 14:22:47

39936

Prg

RADBTDDF

14.02.2002 14:22:47

260096

Typ

DD02L

19.11.2001 15:49:25

6144

Typ

DDSTATE

07.05.1997 12:49:07

2048

Typ

DD03L

19.11.2001 15:49:29

6144

Typ

DD01L

09.11.2000 14:06:40

5120

Typ

DD04L

28.09.2001 11:44:15

7168

Typ

DD04T

12.05.1997 16:45:50

3072

Prg

SAPLSDDO

19.11.2004 10:54:33

221184

Typ

DDSETSTATE

07.05.1997 12:49:06

3072

Typ

TPARA

10.07.1997 00:45:24

2048

Typ

DCDTELGET

30.03.1995 13:13:18

2048

Prg

SAPLSDDM

14.02.2002 14:22:48

56320

Typ

DD08L

05.11.1997 02:52:51

4096

Prg

SAPLSDFK

14.02.2002 14:22:48

26624

Typ

DD35L

20.08.1998 11:16:26

2048

Typ

DD12L

05.11.1997 02:52:52

4096

Typ

DD09V

27.08.1999 18:04:52

4096

Typ

DD09L

20.08.1998 11:35:53

4096

Typ

DCTABLGET

04.06.1997 19:16:24

3072

Typ

DDXTT

15.11.2000 20:17:19

6144

Prg

RATTBUTL

16.06.2004 11:40:51

187392

Typ

V_21S23L

20.08.1998 11:32:35

3072

Typ

DD092526V

20.08.1998 11:15:55

2048

Typ

X030L

15.11.2000 18:03:24

6144

Typ

DDBIDIDTN

19.11.2004 10:40:38

2048

Typ

DDFTX

05.11.1997 02:52:59

4096

Typ

DPPROPS

09.07.1997 23:53:23

2048

Prg

SAPLURFC

10.05.2004 12:32:17

19456

Prg

SAPLSRFC

22.06.2004 14:55:28

41984

Prg

SAPLSYST

19.11.2004 10:52:11

32768

Prg

SAPMSSY1

14.02.2002 14:22:48

21504

Prg

SAPLGRFC

14.02.2002 14:22:47

16384

Typ

ARFCDATA

04.04.1995 15:40:32

5120

Typ

OBJ_RECORD

14.02.1998 08:30:43

2048

Prg

SAPLCNT0

14.02.2002 14:22:47

39936

Prg

SAPLSCNT

14.02.2002 14:22:47

30720

Typ

DYCBOX

20.08.1998 11:16:53

3072

Prg

SAPLSVSM

07.01.2003 18:35:45

25600

Prg

SAPLSTUP

19.11.2004 10:51:38

75776

Prg

SAPFGUICNTL_CFW

14.02.2002 14:22:47

15360

Typ

ARFCRDATA

09.11.2000 14:04:16

6144

Typ

ARFCSDATA

09.11.2000 14:18:17

6144

Typ

OLE_VERBS

04.04.1995 16:02:20

2048

Typ

OBJ_RECORD

14.02.1998 08:30:43

2048

Prg

CL_GUI_DATAMANAGER============CP

19.11.2004 10:52:19

76800

Prg

IF_CACHED_PROP================IP

13.11.2000 16:47:43

5120

Typ

SYST

04.12.2000 14:54:51

31744

-


-


List of internal tables

-


No dump information available

-


Directory of Application Tables

-


Program

Name................ Contents....1........2........3........4........5....+....

-


SAPLSMTR_NAVIGATION

SYST |\0\0\0\0\x0008\0\x0002\0\0\0\0\0\0\0\0\0\0\0\0\0\x0001\0\0

SSM_CUST |

PRGN_CUST | |

SAPLSMTR_NAVIGATION_MODULES

AGR_DATEU |210WIN_WIDTH TIM 20071114101044\0\0\0\x0C00

SSM_CUST |

SMENFAVDAT |210TIM FAVOS 20061130101459\0\0\0\x0C00|

USR01 |210TIM LOCL GK1

USR21 |210TIM 00000246850000022273

START_GUID |

TTREET |ES000 SAP R/3 System

SYS_MENU |START_MENU |

USERS_SSM | |

CVERS | |

SAPLICON

ICONT |

SAPLSUSM

USR03 |

USR21 |210TIM 00000246850000022273

TSAD3T | |

SAPLSUG2

SVERS |620

CL_GUI_PROPS_CONSUMER=========CP

EUDB |%C0002000087655B389D274C7893A77C680135821B \0\0\0

SAPLOLEA

TOLE |SAPGUI.APPLICATION {83658045-6571-3232-

SAPLSHTM

WWWPARAMS |MISESS_IMAGE version

SAPLSHI1

TTREE |S000

TTREETYPE |BMENUXGENERTMENU01 SMEH SAP 1997041600000

SAPLSHI2

INDX_HIER |02S000 \x0001\0\x1AC6##\xF479##

TTREELOADS |S000 20041202152319G|

TTREELOADT |ES000 20041202152321G|

SAPLSEUF

TFDIR |STREE_RESET_INT_TABLES_GENER SAPLSHI2

RS38L |

ENLFDIR |STREE_RESET_INT_TABLES_GENER SHI2 X

RSINFDIR |

SAPLSHI9

TTREELOADS |S000 20041202152319G|

TTREELOADT |ES000 20041202152321G|

SAPLBMEN

TSTC |

SAPLSDNT

DDXTT | \0\0\0\0\0\0\0\0

V_21S23L | 00000000 |

DD092526V |

-


Directory of Application Tables (Administrative Information)

-


Program

Name.......................... Time.......... Length...

-


SAPLSDNT

SYST 00004608

SSM_CUST 00000440

PRGN_CUST 00000060

SAPLSMTR_NAVIGATION_MODULES

AGR_DATEU 00000206

SSM_CUST 00000440

SMENFAVDAT 00000086

USR01 00000220

USR21 00000146

START_GUID 00000556

TTREET 00000366

SYS_MENU 00000104

USERS_SSM 00000038

CVERS 00000102

SAPLICON

ICONT 00000130

SAPLSUSM

USR03 00000876

USR21 00000146

TSAD3T 00000076

SAPLSUG2

SVERS 00000144

CL_GUI_PROPS_CONSUMER=========CP

EUDB 00004068

SAPLOLEA

TOLE 00000394

SAPLSHTM

WWWPARAMS 00000684

SAPLSHI1

TTREE 00000430

TTREETYPE 00000186

SAPLSHI2

INDX_HIER 00008076

TTREELOADS 00000094

TTREELOADT 00000096

SAPLSEUF

TFDIR 00000188

RS38L 00004950

ENLFDIR 00000146

RSINFDIR 00000152

SAPLSHI9

TTREELOADS 00000094

TTREELOADT 00000096

SAPLBMEN

TSTC 00000180

SAPLSDNT

DDXTT 00000272

V_21S23L 00000102

DD092526V 00000124

-


ABAP control blocks CONT

-


Include Line source code

Index Name F1 Co Par01 Par2. Par3. Par4. Tabl

-


-


-- -- -


-


-


-


-


-


LOLEAU02 33 WHEN 4.

2199 BRAX 00

LOLEAU02 35 MESSAGE ID 'CNDP' TYPE 'X' NUM

2200 CATC 08

2201 MOVL 00 02 002E

2203 mlq1 02 05 0058

2205 MOVL 00 08 0030

2207 CATC 48

2208 CLEA 00

2209 CLEA 00

2210 CLEA 00

2211 CLEA 00

2212 FUNE 01

2213 ENDF 00

>>>>> MESS 00

LOLEAU02 36 WHEN OTHERS.

2215 BRAX 00

LOLEAU02 37 RAISE CNTL_ERROR.

2216 FUNE 03

2217 ENDF 00

LOLEAU02 40 ENDFUNCTION.

2218 FUNE 00

2219 -


LOLEA$04 5 FUNCTION $$UNIT$$ AC_IS_QUEUE_

2220 FUNP 40 8000 8000 8000 0000

2224 FUNP 80 0000

-


End of runtime analysis

-


Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi . The "Home" editions and Vista "Starter" are not supported by SAP GUI - please use either one of the "Business" or "Ultimate" editions of Vista.

Regards.

Former Member
0 Kudos

Thanks Sergo.

That could have been the problem, but I am using Vista Ultimate.

Any more ideas anyone?

Do you think it could have to do with the client's system? I went there yesterday and I saw they are not maintaining their system (4.7) anymore because they will be stopping with that system soon.. Could that be it?

Unfortunately I do not have the opportunity to try it on another system rigt now.

former_member204746
Active Contributor
0 Kudos

the short dump tells you what to do:

1. Make sure that you have imported the appropriate Support

Package, the current kernel, and GUI patch for the release of your

system

2. Check whether the error occurs locally on one or a few PCs, or

generally on all PCs. Note whether the error only occurs for some

users, for example because of a specific Customizing setting.

If it only occurs locally, this suggests an installation problem

with the PC. Check the installation; if necessary, reinstall the

software. In the dump, search for the SY-MSGLI field, since it may

point to the cause of the error.

3. Activate the Automation Trace (in accordance with SAP Note

158985).

4.Start the transaction and continue until the screen immediately

before the dump.

5. From the System -> Utilities menu, choose Autom. Queue,

Synchronous Processing.

The status bar of the GUI displays the text:

"Automation synchron flush mode on"

6. If you now proceed with the application, the short dump will

display the ABAP call that caused the error; the Automation Trace

will contain the error on the presentation server.

7. If necessary, load the short dump and trace files on to

sapservX, so that SAP can analyze them.

Former Member
0 Kudos

I tried connecting to another SAP system and I had the same problem. So the problem was on my workstation.

My Vista system being quite slow, I decided to re-install it from a recovery disc. After that I installed the SAP GUI and patches.

The good news is that I do not have the SAP GUI runtime error anymore. The bad news is that I do not know what was the problem, and it could very well happen again (maybe after a Windows update?).

Thanks for the help everyone.

Answers (0)