cancel
Showing results for 
Search instead for 
Did you mean: 

Runtime errors MESSAGE_TYPE_X - Start SAP Easy Access (SAP GUI 7 Patch 5)

Former Member
0 Kudos

After starting the SAP GUI I get on one PC with Windows XP Professional SP 2 by some (not all) User profiles a Runetime error message. It isen't possible to Start SAP Easy Access.

A reinstall of SAP GUI solved the error not.

I search for a solution. Thanks.

The ABAP Debugger (Main Program: SAPLOLEA / Source code of: LOLEAU02) stop at

...

sy-subrc = sysubrc.

CASE SY-SUBRC

WHEN 0.

WHEN 1

  • system_error

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

WHEN 2

  • method_call_error

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

...

Here the Runetime error:

Runtime errors MESSAGE_TYPE_X Page 1

Occurred on 25.03.2008 at 12:12:44

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,

Runtime errors MESSAGE_TYPE_X Page 2

Occurred on 25.03.2008 at 12:12:44

Error analysis (Continue)

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.

Runtime errors MESSAGE_TYPE_X Page 3

Occurred on 25.03.2008 at 12:12:44

System environment

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

Application server....... "debmu741"

Network address.......... "145.228.39.18"

Operating system......... "Linux"

Release.................. "2.6.5-7.286-smp"

Hardware type............ "x86_64"

Character length......... 8 Bits

Pointer length........... 64 Bits

Work process number...... 0

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

Database server.......... "debmu741"

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

Database name............ "JPR"

Database owner........... "SAPJPL"

Character set............ "en_US.ISO-8859-1"

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

Created on............... "May 4 2005 19:45:58"

Created in............... "Linux GNU/Linux SUSE_LINUX_Enterprise_Server_9

x86_64 GNU gcc 3.3.3"

Database version......... "OCI_920 "

Patch level.............. "71"

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

Supported environment....

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

10.1.0.."

SAP database version..... "640"

Operating system......... "Linux 2.6"

Runtime errors MESSAGE_TYPE_X Page 4

Occurred on 25.03.2008 at 12:12:44

User, transaction...

Client.............. 238

User................ "MUEL09"

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

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

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

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

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

Information on where terminated

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

The main program was "SAPLSMTR_NAVIGATION ".

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

program "LOLEAU02"

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

Runtime errors MESSAGE_TYPE_X Page 5

Occurred on 25.03.2008 at 12:12:44

Source code extract

000010 FUNCTION AC_SYSTEM_FLUSH .

000020 *"

000030 ""Lokale Schnittstelle:

000040 *" IMPORTING

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

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

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

000360 WHEN OTHERS.

000370 RAISE CNTL_ERROR.

000380 ENDCASE.

000390

000400 ENDFUNCTION.

Runtime errors MESSAGE_TYPE_X Page 6

Occurred on 25.03.2008 at 12:12:44

Contents of system fields

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

SY-SUBRC 2 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 29

3 FORM

HANDLE_FLUSH_PBO

SAPFGUICNTL

SAPFGUICNTL 256

2 FORM

%_CTL_OUTPUT

SAPMSSYD

SAPMSSYD 155

1 MODULE (PBO)

%_CTL_OUTPUT

SAPLSMTR_NAVIGATION

29

%_DUMMY$$

2222

0000

SY-REPID SAPLSMTR_NAVIGATION

5454545554454445444222222222222222222222

310C3D42FE1697149FE000000000000000000000

Runtime errors MESSAGE_TYPE_X Page 10

Occurred on 25.03.2008 at 12:12:44

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 1133 of the module

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

The internal operation just processed is "MESS".

The internal session was started at 20080325121243.

Active calls in SAP kernel

(CTrcStack2+0x7a)[0x5e94aa]

(CTrcStack+0xb)[0x5e9aeb]

(ab_rabax+0x1f94)[0x9acf84]

(_Z8ab_jmessv+0x48e)[0x9bc95e]

(_Z8ab_extriv+0x208)[0x737458]

(_Z9ab_xeventPKc+0x29a)[0x87179a]

(ab_dstep+0x18c)[0x9beadc]

(dynpctlcal+0x420)[0x641400]

(dynpout0+0x1ac)[0x64419c]

(dynprctl+0x3e4)[0x642d04]

(dynpen00+0x402)[0x6385e2]

(Thdynpen00+0x2a9)[0x4ce039]

(TskhLoop+0x307)[0x4d7647]

(tskhstart+0x1b9)[0x4e54f9]

(DpMain+0x28f)[0x46a93f]

(main+0x9)[0x446859]

/lib64/libc.so.6(__libc_start_main+0x9d)[0x2a970170cd]

Runtime errors MESSAGE_TYPE_X Page 11

Occurred on 25.03.2008 at 12:12:44

List of ABAP programs affected

Type Program Gen. Date Time Load Size

Prg SAPLSMTR_NAVIGATION 02.02.2007 18:10:25 183296

Prg SAPMSSYD 05.06.2002 17:09:33 16384

Prg SAPFSYSCALLS 14.02.2002 14:22:47 6144

Typ PRGN_CUST 30.03.1998 10:02:50 2048

Prg SAPLSMTR_NAVIGATION_MODULES 02.02.2007 18:02:07 147456

Typ AGR_DATEU 30.08.2001 17:56:20 2048

Prg SAPLSFES 02.02.2007 18:13:25 222208

Prg SAPLSPLUGIN 14.02.2002 14:22:48 6144

Typ SSM_CUST 07.05.1997 13:49:15 2048

Prg SAPLSGUI 14.06.2003 02:44:00 32768

Prg SAPLSTTM 02.02.2007 17:53:00 75776

Prg SAPLSBDC 02.02.2007 17:57:08 38912

Typ ZSLSCLOGINCHECK 26.05.2000 16:25:13 2048

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 02.02.2007 18:14:19 74752

Typ AGR_USERS 20.01.2003 16:27:01 3072

Prg SAPLSUU6 02.02.2007 18:14:19 166912

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 2048

Typ T000 13.06.2003 23:32:44 4096

Typ AGR_HIER 30.11.1999 10:16:40 4096

Typ AGR_DEFINE 30.08.2001 17:56:21 3072

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 11264

Typ USRBF2 17.06.1998 03:27:39 2048

Typ UST12 25.03.1999 15:43:13 2048

Prg SAPLPRGN_URL_GENERATION 02.02.2007 18:13:29 54272

Typ URL_EXITS 21.12.1999 19:20:38 4096

Prg SAPLICON 02.02.2007 14:13:14 23552

Prg %_CICON 14.02.2002 14:22:46 65536

Prg SAPLSUSM 02.02.2007 17:24:04 22528

Typ USR21 13.06.2003 23:34:50 2048

Typ USR03 12.05.1997 16:51:23 6144

Prg SAPLSUGS 02.02.2007 17:21:38 29696

Prg SAPLSUG2 21.11.2002 10:20:34 39936

Typ SVERS 13.06.2003 23:32:42 1024

Typ UVERS 09.11.2000 14:16:07 3072

Typ V_ADDR_USR 02.02.2007 17:24:04 19456

Typ TSAD3T 14.02.1998 17:01:10 2048

Prg SAPLSADR 02.02.2007 18:15:32 169984

Typ T005 02.02.2007 17:21:06 10240

Typ SMENFAVDAT 30.08.2001 17:57:31 2048

Prg CL_GUI_CONTROL================CP 05.06.2002 17:02:46 105472

Prg %_CCNTL 14.02.2002 14:22:46 13312

Typ OBJ_RECORD 14.02.1998 08:30:43 2048

Runtime errors MESSAGE_TYPE_X Page 12

Occurred on 25.03.2008 at 12:12:44

List of ABAP programs affected (Continue)

Prg CL_GUI_OBJECT=================CP 07.01.2003 18:31:23 373760

Typ OBJ_RECORD 14.02.1998 08:30:43 2048

Prg CL_GUI_CFW====================CP 02.02.2007 17:43:19 154624

Prg CL_GUI_PROPS_CONSUMER=========CP 07.01.2003 18:26:56 26624

Prg SAPLTHFB 02.02.2007 18:15:17 317440

Prg CL_DYNAMIC_GUI_EXTENSIONS=====CP 14.02.2002 14:22:46 33792

Prg SAPLOLEA 02.02.2007 18:14:53 79872

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 8192

Prg CL_ABAP_CHAR_UTILITIES========CP 02.02.2007 17:44:18 11264

Typ OLE_PA 04.04.1995 16:02:19 2048

Prg SAPLSCP2 02.02.2007 18:08:44 122880

Typ SWCONT 04.04.1995 16:18:01 2048

Typ SWCBCONT 15.11.2000 17:55:11 3072

Prg CL_GUI_CUSTOM_CONTAINER=======CP 14.02.2002 14:22:46 37888

Typ CFW_LINK 01.12.1999 12:16:48 2048

Prg CL_GUI_CONTAINER==============CP 14.02.2002 14:22:46 49152

Prg SAPLCNTH 14.02.2002 14:22:47 24576

Prg SAPFGUICNTL 09.01.2003 17:18:52 20480

Prg CL_GUI_SPLITTER_CONTAINER=====CP 14.02.2002 14:22:46 59392

Prg CL_GUI_SIMPLE_CONTAINER=======CP 14.02.2002 14:22:46 35840

Prg CL_GUI_LIST_TREE==============CP 14.02.2002 14:22:46 67584

Prg CL_ITEM_TREE_CONTROL==========CP 14.02.2002 14:22:46 96256

Prg CL_TREE_CONTROL_BASE==========CP 14.02.2002 14:22:46 101376

Typ TREEV_HHDR 14.02.2002 14:05:10 2048

Typ TREEV_LHDR 14.02.2002 14:05:11 2048

Prg CL_ABAP_TYPEDESCR=============CP 02.02.2007 17:48:47 21504

Prg CL_ABAP_ELEMDESCR=============CP 02.02.2007 17:49:16 20480

Prg CL_ABAP_DATADESCR=============CP 02.02.2007 15:16:23 14336

Prg CL_ABAP_REFDESCR==============CP 02.02.2007 15:16:57 16384

Prg CL_ABAP_STRUCTDESCR===========CP 02.02.2007 17:49:16 20480

Prg CL_ABAP_COMPLEXDESCR==========CP 02.02.2007 15:16:23 13312

Prg CL_ABAP_TABLEDESCR============CP 02.02.2007 15:16:57 17408

Prg CL_ABAP_CLASSDESCR============CP 02.02.2007 15:16:57 23552

Prg CL_ABAP_OBJECTDESCR===========CP 02.02.2007 15:16:57 25600

Prg CL_ABAP_INTFDESCR=============CP 02.02.2007 15:16:23 19456

Prg CL_ABAP_SOFT_REFERENCE========CP 29.03.2001 16:42:12 7168

Prg CL_ABAP_REFERENCE=============CP 14.02.2002 14:22:46 6144

Prg CL_DRAGDROP===================CP 14.02.2002 14:22:46 33792

Typ SMENSAPLNG 01.02.2000 09:29:19 4096

Typ SMENSAPLNT 10.11.1998 05:41:56 2048

Typ SMENSAPFAV 15.11.2000 17:54:12 3072

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 2048

Prg SAPLSHI1 02.02.2007 17:21:38 198656

Typ HIER_MESS 18.09.2001 10:02:50 3072

Typ TTREE 07.01.2003 18:24:55 5120

Typ TADIR 02.02.2007 17:21:21 4096

Typ TTREET 30.11.1998 15:53:56 2048

Prg SAPLSMNU_NEW 02.02.2007 17:53:23 69632

Typ SMENSAPNEW 15.11.2000 17:54:12 3072

Prg SAPLSHI2 02.02.2007 18:07:24 154624

Runtime errors MESSAGE_TYPE_X Page 13

Occurred on 25.03.2008 at 12:12:44

List of ABAP programs affected (Continue)

Prg SAPLSHI6 02.02.2007 18:07:24 454656

Typ STREEPROP 08.04.1999 16:05:21 2048

Typ TTREETYPE 15.11.2000 17:58:06 4096

Prg SAPLSEUF 02.02.2007 18:11:58 278528

Typ TFDIR 29.07.1998 19:49:08 3072

Prg SAPMS38L 02.02.2007 18:15:42 574464

Typ RS38L 19.11.2001 15:47:56 26624

Typ ENLFDIR 09.11.2000 14:07:35 3072

Typ RSINFDIR 29.07.1998 19:07:56 2048

Typ TNODE01 29.03.2001 16:11:09 7168

Typ TNODE01R 29.03.2001 16:05:53 4096

Typ HIER_INACT 14.10.1999 21:56:54 2048

Typ TNODE01T 15.11.2000 17:57:39 3072

Prg SAPLSHI5 02.02.2007 17:39:12 58368

Typ TREENAMESP 14.02.1998 14:16:31 2048

Prg SAPLSHI3 02.02.2007 18:15:14 174080

Typ TTREES 14.02.1998 05:27:02 2048

Prg SAPLSHI9 02.02.2007 17:50:57 34816

Typ TTREELOADS 14.02.1998 14:33:46 2048

Typ HIER_IFACE 18.12.2001 16:53:05 9216

Prg SAPLSHI10 02.02.2007 18:13:38 143360

Typ HIER_NODES 14.02.1998 07:29:35 2048

Typ TRTYPEH 15.11.2000 17:57:59 4096

Typ TTREELOADT 14.02.1998 14:33:59 2048

Typ HIER_TEXTS 09.11.2000 14:07:58 2048

Prg SAPLBMEN 02.02.2007 18:10:01 315392

Typ TSTC 20.08.1998 11:09:07 2048

Prg SAPMSSY0 02.02.2007 18:14:18 66560

Prg SAPLSPIAGENTCW 02.02.2007 16:22:25 8192

Prg SAPLSPILS 02.02.2007 17:43:40 43008

Prg CL_OS_TRANSACTION_END_NOTIFIERCP 14.06.2003 01:38:02 9216

Prg CL_SYSTEM_TRANSACTION_STATE===CP 02.02.2007 17:43:39 54272

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 2048

Typ SBJTREEITM 02.02.2007 17:20:21 4096

Prg SAPLCNDP 02.02.2007 18:11:47 169984

Prg SAPLCNTL 14.02.2002 14:22:47 292864

Typ TREEV_NODE 14.02.2002 14:05:11 4096

Typ RFC_FIELDS 20.08.1998 10:56:34 2048

Typ DFIES 09.11.2000 14:07:05 8192

Prg SAPLSDIFRUNTIME 02.02.2007 17:17:26 82944

Typ DDFIXVALUE 27.08.1999 18:04:56 2048

Typ X031L 15.11.2000 18:03:28 5120

Prg SAPLSDNT 02.02.2007 17:56:09 201728

Typ DDFTX 05.11.1997 02:52:59 4096

Typ DPPROPS 09.07.1997 23:53:23 2048

Prg SAPLURFC 02.02.2007 17:53:26 17408

Prg SAPLSRFC 02.02.2007 17:41:07 34816

Prg SAPLSYST 02.02.2007 17:49:14 29696

Prg SAPMSSY1 14.02.2002 14:22:48 18432

Prg SAPLGRFC 14.02.2002 14:22:47 13312

Typ ARFCDATA 04.04.1995 15:40:32 4096

Typ OBJ_RECORD 14.02.1998 08:30:43 2048

Runtime errors MESSAGE_TYPE_X Page 14

Occurred on 25.03.2008 at 12:12:44

List of ABAP programs affected (Continue)

Prg SAPLCNT0 14.02.2002 14:22:47 33792

Prg SAPLSCNT 14.02.2002 14:22:47 24576

Typ DYCBOX 20.08.1998 11:16:53 2048

Prg SAPLSVSM 02.02.2007 18:05:39 24576

Prg CL_DATAPROVIDER===============CP 14.02.2002 14:22:46 40960

Prg SAPLSTUP 02.02.2007 18:01:44 65536

Prg SAPFGUICNTL_CFW 14.02.2002 14:22:47 12288

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 02.02.2007 18:10:17 70656

Prg IF_CACHED_PROP================IP 13.11.2000 16:47:43 4096

Typ SYST 04.12.2000 14:54:51 27648

List of internal tables

No dump information available

Directory of Application Tables

Program

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

SAPLSMTR_NAVIGATION

SYST

00000000x08000x0200000000000000

SSM_CUST

ITS_PING_SWITCH_ON NO

PRGN_CUST

SAPLSMTR_NAVIGATION_MODULES

AGR_DATEU

238WIN_WIDTH MUEL09 200607031023040000000

SSM_CUST

RESIZE_IMAGE YES

SMENFAVDAT

238MUEL09 FAVOS 200803250833130000000x0C

USR01

238MUEL09 LOCL GK1

USR21

238MUEL09 00030819740003096310200000

START_GUID

TTREET

ES000 SAP R/3 System

SYS_MENU

START_MENU

USERS_SSM

Runtime errors MESSAGE_TYPE_X Page 15

Occurred on 25.03.2008 at 12:12:44

Directory of Application Tables (Continue)

CVERS

SAPLSGUI

ZSLSCLOGINCHECK

238MUEL09 200803251212432007011812392820080325121243

SAPLICON

ICONT

SAPLSUSM

USR03

USR21

238MUEL09 00030819740003096310200000

TSAD3T

SAPLSUG2

SVERS

620

SAPLSADR

T005

238DE D 054001 XDX DE 000X 102084101X100 31100 00

CL_GUI_PROPS_CONSUMER=========CP

EUDB

%C0005300047E74B9085F15C44E100000091E42712 0000

SAPLOLEA

TOLE

SAPGUI.APPLICATION {83658045-6571-3232-

SAPLSHI1

TTREE

S000

TTREETYPE

BMENUXGENERTMENU01 SMEH SAP 1997041600000

SAPLSHI2

INDX_HIER

02S000 x01000x8Ax0C0»a

TTREELOADS

S000 20070202211537G

TTREELOADT

ES000 20070204083556G

SAPLSEUF

TFDIR

STREE_RESET_INT_TABLES_GENER SAPLSHI2

RS38L

ENLFDIR

STREE_RESET_INT_TABLES_GENER SHI2 X

RSINFDIR

SAPLSHI9

TTREELOADS

S000 20070202211537G

TTREELOADT

ES000 20070204083556G

Runtime errors MESSAGE_TYPE_X Page 16

Occurred on 25.03.2008 at 12:12:44

Directory of Application Tables (Continue)

SAPLBMEN

TSTC

Directory of Application Tables (Administrative Information)

Program

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

SAPLBMEN

SYST 00002404

SSM_CUST 00000220

PRGN_CUST 00000030

SAPLSMTR_NAVIGATION_MODULES

AGR_DATEU 00000107

SSM_CUST 00000220

SMENFAVDAT 00000047

USR01 00000110

USR21 00000073

START_GUID 00000278

TTREET 00000183

SYS_MENU 00000052

USERS_SSM 00000019

CVERS 00000051

SAPLSGUI

ZSLSCLOGINCHECK 00000057

SAPLICON

ICONT 00000065

SAPLSUSM

USR03 00000438

USR21 00000073

TSAD3T 00000038

SAPLSUG2

SVERS 00000072

SAPLSADR

T005 00000139

CL_GUI_PROPS_CONSUMER=========CP

EUDB 00003940

SAPLOLEA

TOLE 00000197

SAPLSHI1

TTREE 00000215

TTREETYPE 00000093

SAPLSHI2

INDX_HIER 00008044

TTREELOADS 00000047

TTREELOADT 00000048

SAPLSEUF

TFDIR 00000094

RS38L 00002479

ENLFDIR 00000073

RSINFDIR 00000076

Runtime errors MESSAGE_TYPE_X Page 17

Occurred on 25.03.2008 at 12:12:44

Directory of Application Tables (Administrative Information) (Continue)

SAPLSHI9

TTREELOADS 00000047

TTREELOADT 00000048

SAPLBMEN

TSTC 00000090

ABAP control blocks CONT

Include Line source code

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

LOLEAU02 27 WHEN 2.

2159 BRAX 00

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

2160 CATC 08

2161 MOVL 00 02 002E

2163 mlq1 01 05 0058

2165 MOVL 00 08 0030

2167 CATC 48

2168 CLEA 00

2169 CLEA 00

2170 CLEA 00

2171 CLEA 00

2172 FUNE 01

2173 ENDF 00

>>>>> MESS 00

LOLEAU02 30 WHEN 3.

2175 BRAX 00

2176 cmpr 00 CA 0003

2178 BRAN 02

2179 BRAX 00

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

2180 CATC 08

2181 MOVL 00 02 002E

2183 mlq1 01 05 0058

Runtime errors MESSAGE_TYPE_X Page 18

Occurred on 25.03.2008 at 12:12:44

End of runtime analysis

Edited by: Andreas Mueller on Mar 25, 2008 1:18 PM / Update

Accepted Solutions (1)

Accepted Solutions (1)

0 Kudos

Hello Andreas

Could you please provide the Automation Trace. Please refer to note 158985 to generate the automation trace. Please send the trace file to me.

Regards,

Dinesh

Former Member
0 Kudos

I can't start the Automation Trace by the other Users (Admin and other). So I reinstallt the SAP GUI and got this Error:

SAPSetup Error Report

Username: Administrator

Computername: MSR011

Date: 26.03.2008

Time: 09:03:13

Action-

Type

State Error Source Destination

Error-

Code

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\system\comct332.ocx

C:\WINDOWS\system32\comct332.ocx

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\System\SAP\wdtlog.ocx

C:\Programme\Gemeinsame Dateien\SAP

Shared\wdtlog.ocx

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\WDTTREE.OCX

C:\Programme\SAP\FrontEnd\SapGui\WDTTREE.OCX

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\SAPTABCN.OCX

C:\Programme\SAP\FrontEnd\SapGui\SAPTABCN.OCX

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\sapdatap.ocx

C:\Programme\SAP\FrontEnd\SapGui\sapdatap.ocx

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\sapdpcts.ocx

C:\Programme\SAP\FrontEnd\SapGui\sapdpcts.ocx

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\WDTAOCX.OCX

C:\Programme\SAP\FrontEnd\SapGui\WDTAOCX.OCX

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\wdtfuncs.ocx

C:\Programme\SAP\FrontEnd\SapGui\wdtfuncs.ocx

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\wdobapi.ocx

C:\Programme\SAP\FrontEnd\SapGui\wdobapi.ocx

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\h5ocx32.ocx

C:\Programme\SAP\FrontEnd\SapGui\h5ocx32.ocx

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\chart.ocx

C:\Programme\SAP\FrontEnd\SapGui\chart.ocx

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\grctrl.ocx

C:\Programme\SAP\FrontEnd\SapGui\grctrl.ocx

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\sapgradp.ocx

C:\Programme\SAP\FrontEnd\SapGui\sapgradp.ocx

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\ICJoin.ocx

C:\Programme\SAP\FrontEnd\SapGui\ICJoin.ocx

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\wdbdadptjoin.ocx

C:\Programme\SAP\FrontEnd\SapGui\wdbdadptjoin.ocx

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\sapformpainter.dll

C:\Programme\SAP\FrontEnd\SapGui\sapformpainter.dll

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\saptablepainter.dll

C:\Programme\SAP\FrontEnd\SapGui\saptablepainter.dll

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\sapborderpainter.dll

C:\Programme\SAP\FrontEnd\SapGui\sapborderpainter.dll

-

2147024891

File Install

Zugriff

E:\PRES1

\GUI\WINDOWS\WIN32

C:\Programme\SAP\FrontEnd\SapGui\sapcltfc.ocx

-

verweigert \SapGui\sapcltfc.ocx 2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\sapalvcrprev.ocx

C:\Programme\SAP\FrontEnd\SapGui\sapalvcrprev.ocx

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\SAPsbar.OCX

C:\Programme\SAP\FrontEnd\SapGui\SAPsbar.OCX

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\SAPbarc.OCX

C:\Programme\SAP\FrontEnd\SapGui\SAPbarc.OCX

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\SAPnetz.OCX

C:\Programme\SAP\FrontEnd\SapGui\SAPnetz.OCX

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\SAPsel.OCX

C:\Programme\SAP\FrontEnd\SapGui\SAPsel.OCX

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\System\SAP\sapchart.ocx

C:\Programme\Gemeinsame Dateien\SAP

Shared\sapchart.ocx

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\sapgui\sapsign.ocx

C:\Programme\SAP\FrontEnd\sapgui\sapsign.ocx

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\sapqtab.ocx

C:\Programme\SAP\FrontEnd\SapGui\sapqtab.ocx

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\sapvqlib.dll

C:\Programme\SAP\FrontEnd\SapGui\sapvqlib.dll

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\sapvq.ocx

C:\Programme\SAP\FrontEnd\SapGui\sapvq.ocx

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SAPgui\SAPROTWR.DLL

C:\Programme\SAP\FrontEnd\SAPgui\SAPROTWR.DLL

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SAPgui\sapfewdbg.dll

C:\Programme\SAP\FrontEnd\SAPgui\sapfewdbg.dll

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SAPgui\SAPfewut.dll

C:\Programme\SAP\FrontEnd\SAPgui\SAPfewut.dll

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SAPgui\sapfprint.dll

C:\Programme\SAP\FrontEnd\SAPgui\sapfprint.dll

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\SAPprint.ocx

C:\Programme\SAP\FrontEnd\SapGui\SAPprint.ocx

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\SAPSLIDE.OCX

C:\Programme\SAP\FrontEnd\SapGui\SAPSLIDE.OCX

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\SAPHTMLM.OCX

C:\Programme\SAP\FrontEnd\SapGui\SAPHTMLM.OCX

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\SAPHTMLP.DLL

C:\Programme\SAP\FrontEnd\SapGui\SAPHTMLP.DLL

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\SAPEDIT.OCX

C:\Programme\SAP\FrontEnd\SapGui\SAPEDIT.OCX

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\sapcombo.ocx

C:\Programme\SAP\FrontEnd\SapGui\sapcombo.ocx

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\combobox.ocx

C:\Programme\SAP\FrontEnd\SapGui\combobox.ocx

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\saptbar.ocx

C:\Programme\SAP\FrontEnd\SapGui\saptbar.ocx

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\SAPRTF.OCX

C:\Programme\SAP\FrontEnd\SapGui\SAPRTF.OCX

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

C:\Programme\SAP\FrontEnd\SapGui\WDTMCTRL.OCX

-

2147024891

\SapGui\WDTMCTRL.OCX

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\WDTRMENU.OCX

C:\Programme\SAP\FrontEnd\SapGui\WDTRMENU.OCX

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\SAPoimgr.OCX

C:\Programme\SAP\FrontEnd\SapGui\SAPoimgr.OCX

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\SAPoipe8.OCX

C:\Programme\SAP\FrontEnd\SapGui\SAPoipe8.OCX

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\SAPoipss.OCX

C:\Programme\SAP\FrontEnd\SapGui\SAPoipss.OCX

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\SAPoipw8.OCX

C:\Programme\SAP\FrontEnd\SapGui\SAPoipw8.OCX

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\SAPoipd.OCX

C:\Programme\SAP\FrontEnd\SapGui\SAPoipd.OCX

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\SAPsdcc.OCX

C:\Programme\SAP\FrontEnd\SapGui\SAPsdcc.OCX

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\ios.dll

C:\Programme\SAP\FrontEnd\SapGui\ios.dll

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\SAPImage.dll

C:\Programme\SAP\FrontEnd\SapGui\SAPImage.dll

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\sapab4edit.ocx

C:\Programme\SAP\FrontEnd\SapGui\sapab4edit.ocx

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\sapsplit.ocx

C:\Programme\SAP\FrontEnd\SapGui\sapsplit.ocx

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\GridView.ocx

C:\Programme\SAP\FrontEnd\SapGui\GridView.ocx

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\viscarri.ocx

C:\Programme\SAP\FrontEnd\SapGui\viscarri.ocx

-

2147024891

File Install Not

Available

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\visualiz.exe

C:\Programme\SAP\FrontEnd\SapGui\visualiz.exe

-

2147467259

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\vistransmitter.ocx

C:\Programme\SAP\FrontEnd\SapGui\vistransmitter.ocx

-

2147024891

File Install Not

Available

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\visu_se.exe

C:\Programme\SAP\FrontEnd\SapGui\visu_se.exe

-

2147467259

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\SAPguiRM.ocx

C:\Programme\SAP\FrontEnd\SapGui\SAPguiRM.ocx

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\SAPilidr.ocx

C:\Programme\SAP\FrontEnd\SapGui\SAPilidr.ocx

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\SAPOPTIO.OCX

C:\Programme\SAP\FrontEnd\SapGui\SAPOPTIO.OCX

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\SAPfewin.OCX

C:\Programme\SAP\FrontEnd\SapGui\SAPfewin.OCX

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\SAPguisv.ocx

C:\Programme\SAP\FrontEnd\SapGui\SAPguisv.ocx

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\wdtmlgnd.ocx

C:\Programme\SAP\FrontEnd\SapGui\wdtmlgnd.ocx

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\sapcalen.ocx

C:\Programme\SAP\FrontEnd\SapGui\sapcalen.ocx

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\sapalvstub.dll

C:\Programme\SAP\FrontEnd\SapGui\sapalvstub.dll

-

2147024891

File Install Zugriff

verweigert

E:\PRES1

\GUI\WINDOWS\WIN32

\SapGui\SAPBTFEditor.dll

C:\Programme\SAP\FrontEnd\SapGui\SAPBTFEditor.dll

-

2147024891

SAP don't works. Than I reinstallt the SAP with my User and it works ... . Have you an Idee?

Andreas

Former Member
0 Kudos

Hi Andreas Mueller.

Try step by step. First you uninstall GUI -->

1) In add+remove proggrams you uninstal it.

2) Go to program files and delete the folder SAP

3) Go to program files\common files and delete the SAP shared folder.

4) Reboot the PC

5) Install GUI 710 only (no need to patch 5)

Chek if works, if not write here error (only it is not necessary so much to write as before)

P.S It needs to be made the user with "administrator" authorization.

Regards.

Edited by: Sergo Beradze on Mar 26, 2008 1:03 PM

Former Member
0 Kudos

Hi Sergo Beradze,

I tried all steps - without any change. I can use the SAP GUI with my own Windows Account, but all over Users (also the Admin) can't use the SAP GUI. This user can't use the Icon SAP Logon under programs. When I start directly the saplogon.exe I get the same error ... I'm confused ... .

Andreas

Former Member
0 Kudos

The name the admin means nothing..) First i need to know of Your users concern to what groups...

For this go to --> Control Panel --> Administrative tools --> computer management -->

Local users and groups --> Users , open user which cannot start --> member of --> List where it concerns.

After this go to program files\sap and chek the security tab for this folder, write to us what parameters there

Regards.

Edited by: Sergo Beradze on Mar 26, 2008 2:38 PM

Answers (0)