Codepage SAP

Hello!
I have a little problem with codepages. Do anybody know which codepage SAP is using for converting ANSI in UTF-16?
I always get the following error message:   CodePage conversion error
"At the conversion of a text from codepage '4103' to codepage '4110':
a character was found that cannot be displayed in one of the two codepages.
Do anybody know how I can solve this problem?
Thanks in advance for your reply!
Greetings,
Alexander

Hi Eric,
thanks for your fast reply. I know that codepage 4110 is the UTF-8 Format. Here is my code:
FUNCTION z_test_read_file.
""Lokale Schnittstelle:
*"  IMPORTING
*"     REFERENCE(IV_FILENAME) TYPE  ZTEST_FILENAME
*"  EXPORTING
*"     REFERENCE(ASCIIDATA) TYPE  STRING
*"  TABLES
*"      TESTTABELLE STRUCTURE  ZTEST_STRUKTUR1
*"  EXCEPTIONS
*"      CAN_NOT_OPEN_FILE
*"      NO_CONTENT
  DATA lv_binary_data TYPE xstring.
  DATA lv_ascii_data TYPE string.
  DATA: v_buffer TYPE xstring.
  DATA conv TYPE REF TO cl_abap_conv_x2x_ce.
  DATA wa_message TYPE /ixult/hv_long_text_stru2.
lese Daten vom applicationserver binär
öffnen der Datei durch einen Datenstromcursor
  OPEN DATASET iv_filename FOR INPUT IN BINARY MODE.
  IF sy-subrc = 0.
lese Dateiinhalt in eine XSTRING Variable lv_binary_data
    READ DATASET iv_filename INTO lv_binary_data.
    conv = cl_abap_conv_x2x_ce=>create(
                                in_encoding = '1100'
                                in_endian = 'L'
                                out_encoding = '4103'
                                out_endian = 'L'
                                input = lv_binary_data ).
    call method conv->convert_c( ).
    call method conv->convert_i( ).
    v_buffer = conv->get_out_buffer( ).
split string
    CLEAR lv_ascii_data.
    CALL FUNCTION 'ECATT_CONV_XSTRING_TO_STRING'
      EXPORTING
        im_xstring        = lv_binary_data
       IM_ENCODING       = 'UTF-8'
     IMPORTING
       ex_string         = lv_ascii_data
    CONDENSE lv_ascii_data.
    REFRESH testtabelle.
    SPLIT lv_ascii_data AT space INTO TABLE testtabelle.
    LOOP AT testtabelle INTO  wa_message.
Schliessen des Datenstromcursor zur Sicherheit, SAP macht manchmal komische Sachen
    CLOSE DATASET iv_filename.
    RAISE can_not_open_file.
  ENDIF.
ENDFUNCTION.
Greetings,
Alexander

Similar Messages

  • Codepage issue when connecting to SAP R/3 under Mac OS X

    Hello,
    I am trying to connect to my enterprise SAP R/3 4.6c backend via the SAPGui for Java 7.00R3 for Mac OS X. I am currently using Mac OS X 10.4.9, on a Macbook (Intel based). However, at every attempt, I get a error message for an invalid codepage or language. I tryied several combinations (1100 and 1140 (ISO Latin 1), 1160 (Cp1252, which work on my Windows plateform with SAPGui for Java 7.00R3), 1167 (MacRoman, the default one)), but it keep failing. The login language is English. It works perfectly on Windows, with the SAPGui for Java client.
    Does anyone had the same issue? Is it possible to solve it ?
    Thanks in advance for your help.
    Best regards,

    I am sorry to go back to you so late ... I have been away from my mac for a week.
    I did the trace and it didn't report anything else than when I let everything to default, it choose the 1127 (MacRoman) codepage. The backend codepage is 1100 and the language of my system is English. (When I connect using Windows version of the SAPGui Java Client, I can see that the codepage is 1160 (Cp1252).
    If you want more details, please let me know.
    Here is the trace:
    25.04. 20:30:55.480 TRC: Trace file opened: /Users/JoLePaBo/Trace.txt
    25.04. 20:30:55.481 TRC: GuiTraceStream.dumpState(): instance           = com.sap.platin.base.util.GuiTraceStream@595050
    25.04. 20:30:55.481 TRC: GuiTraceStream.dumpState(): mOriginalSysErr    = java.io.PrintStream@a7eb3f
    25.04. 20:30:55.481 TRC: GuiTraceStream.dumpState(): open trace files:
    25.04. 20:30:55.481 TRC: GuiTraceStream.dumpState():    /Users/JoLePaBo/Trace.txt
    25.04. 20:30:56.969 TRC: 25.04. 20:30:56.965 TRC: SAPGUI for Java 7.00 rev 3
    25.04. 20:30:56.965 TRC: Build date: Mon Mar 19 16:26:16 MET 2007
    Build details: uw1059, 700_REL, 896547
    25.04. 20:30:56.965 TRC: (Version ID 070000040300)
    25.04. 20:30:56.965 TRC: Java VM: Apple Computer, Inc. Version 1.5.0_07-87
    25.04. 20:30:56.965 TRC: OS: Mac OS X(i386) Version 10.4.9
    25.04. 20:30:56.965 TRC: Java Directory: /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Home
    25.04. 20:30:56.965 TRC: Home Directory: /Users/JoLePaBo
    25.04. 20:30:56.965 TRC: Current Directory: /Applications/SAP Clients/SAPGUI 7.00rev3
    25.04. 20:30:56.965 TRC: Default Character Encoding: ISO8859_1
    25.04. 20:30:56.965 TRC: Preferences directory: /Users/JoLePaBo/Library/Preferences/SAP25.04. 20:30:56.965 TRC: Codebase:
    25.04. 20:30:56.965 TRC: Magic file: jar:file:/Applications/SAP Clients/SAPGUI 7.00rev3/SAPGUI 7.00rev3.app/Contents/Resources/Java/platincoreS.jar!/com/sap/platin/base/util/magic.info
    25.04. 20:30:56.965 TRC: System Glob File: jar:file:/Applications/SAP Clients/SAPGUI 7.00rev3/SAPGUI 7.00rev3.app/Contents/Resources/Java/platincoreS.jar!/com/sap/platin/base/util/globs.info
    25.04. 20:30:56.965 TRC: Private Glob File: file:/Users/JoLePaBo/Library/Preferences/SAP/globs
    25.04. 20:30:56.965 TRC: Desktop integration: Desktop integration using internal application registry
    25.04. 20:30:56.965 TRC: Installed components:   Darwin-graphics.jar
    25.04. 20:30:56.965 TRC: Installed components:   Darwin-lib.jar
    25.04. 20:30:56.965 TRC: Installed components:   Darwin-localstart.jar
    25.04. 20:30:56.965 TRC: Installed components:   GuiStartS.jar
    25.04. 20:30:56.965 TRC: Installed components:   IceBrowserS.jar
    25.04. 20:30:56.965 TRC: Installed components:   iCubeS.jar
    25.04. 20:30:56.965 TRC: Installed components:   JSEngineS.jar
    25.04. 20:30:56.965 TRC: Installed components:   MacOSX-Connect.jar
    25.04. 20:30:56.965 TRC: Installed components:   Manual.jar
    25.04. 20:30:56.965 TRC: Installed components:   platincoreS.jar
    25.04. 20:30:56.965 TRC: Installed components:   platinMacOSXS.jar
    25.04. 20:30:56.965 TRC: Installed components:   platinr3S.jar
    25.04. 20:30:56.965 TRC: Installed components:   platinwdpS.jar
    25.04. 20:30:56.965 TRC: Installed components:   SapCacerts.jar
    25.04. 20:30:56.965 TRC: Installed components:   sapCalendarS.jar
    25.04. 20:30:56.965 TRC: Installed components:   sapChartS.jar
    25.04. 20:30:56.965 TRC: Installed components:   sapContextMenuS.jar
    25.04. 20:30:56.965 TRC: Installed components:   sapGridS.jar
    25.04. 20:30:56.965 TRC: Installed components:   sapHtmlViewerCoreS.jar
    25.04. 20:30:56.965 TRC: Installed components:   sapHtmlViewerS.jar
    25.04. 20:30:56.965 TRC: Installed components:   sapImageS.jar
    25.04. 20:30:56.965 TRC: Installed components:   sapTextEditS.jar
    25.04. 20:30:56.965 TRC: Installed components:   sapToolBarS.jar
    25.04. 20:30:56.965 TRC: Installed components:   sapTreeS.jar
    25.04. 20:30:56.965 TRC: Classes found at:   file:/Applications/SAP Clients/SAPGUI 7.00rev3/SAPGUI 7.00rev3.app/Contents/Resources/Java/Darwin-gmux.jar
    25.04. 20:30:56.965 TRC: Classes found at:   file:/Applications/SAP Clients/SAPGUI 7.00rev3/SAPGUI 7.00rev3.app/Contents/Resources/Java/Darwin-graphics.jar
    25.04. 20:30:56.965 TRC: Classes found at:   file:/Applications/SAP Clients/SAPGUI 7.00rev3/SAPGUI 7.00rev3.app/Contents/Resources/Java/Darwin-lib.jar
    25.04. 20:30:56.965 TRC: Classes found at:   file:/Applications/SAP Clients/SAPGUI 7.00rev3/SAPGUI 7.00rev3.app/Contents/Resources/Java/Darwin-localstart.jar
    25.04. 20:30:56.965 TRC: Classes found at:   file:/Applications/SAP Clients/SAPGUI 7.00rev3/SAPGUI 7.00rev3.app/Contents/Resources/Java/GuiStartS.jar
    25.04. 20:30:56.965 TRC: Classes found at:   file:/Applications/SAP Clients/SAPGUI 7.00rev3/SAPGUI 7.00rev3.app/Contents/Resources/Java/IceBrowserS.jar
    25.04. 20:30:56.965 TRC: Classes found at:   file:/Applications/SAP Clients/SAPGUI 7.00rev3/SAPGUI 7.00rev3.app/Contents/Resources/Java/iCubeS.jar
    25.04. 20:30:56.965 TRC: Classes found at:   file:/Applications/SAP Clients/SAPGUI 7.00rev3/SAPGUI 7.00rev3.app/Contents/Resources/Java/JSEngineS.jar
    25.04. 20:30:56.965 TRC: Classes found at:   file:/Applications/SAP Clients/SAPGUI 7.00rev3/SAPGUI 7.00rev3.app/Contents/Resources/Java/MacOSX-Connect.jar
    25.04. 20:30:56.965 TRC: Classes found at:   file:/Applications/SAP Clients/SAPGUI 7.00rev3/SAPGUI 7.00rev3.app/Contents/Resources/Java/Manual.jar
    25.04. 20:30:56.965 TRC: Classes found at:   file:/Applications/SAP Clients/SAPGUI 7.00rev3/SAPGUI 7.00rev3.app/Contents/Resources/Java/platincoreS.jar
    25.04. 20:30:56.965 TRC: Classes found at:   file:/Applications/SAP Clients/SAPGUI 7.00rev3/SAPGUI 7.00rev3.app/Contents/Resources/Java/platinMacOSXS.jar
    25.04. 20:30:56.965 TRC: Classes found at:   file:/Applications/SAP Clients/SAPGUI 7.00rev3/SAPGUI 7.00rev3.app/Contents/Resources/Java/platinr3S.jar
    25.04. 20:30:56.965 TRC: Classes found at:   file:/Applications/SAP Clients/SAPGUI 7.00rev3/SAPGUI 7.00rev3.app/Contents/Resources/Java/platinwdpS.jar
    25.04. 20:30:56.965 TRC: Classes found at:   file:/Applications/SAP Clients/SAPGUI 7.00rev3/SAPGUI 7.00rev3.app/Contents/Resources/Java/SapCacerts.jar
    25.04. 20:30:56.965 TRC: Classes found at:   file:/Applications/SAP Clients/SAPGUI 7.00rev3/SAPGUI 7.00rev3.app/Contents/Resources/Java/sapCalendarS.jar
    25.04. 20:30:56.965 TRC: Classes found at:   file:/Applications/SAP Clients/SAPGUI 7.00rev3/SAPGUI 7.00rev3.app/Contents/Resources/Java/sapChartS.jar
    25.04. 20:30:56.965 TRC: Classes found at:   file:/Applications/SAP Clients/SAPGUI 7.00rev3/SAPGUI 7.00rev3.app/Contents/Resources/Java/sapContextMenuS.jar
    25.04. 20:30:56.965 TRC: Classes found at:   file:/Applications/SAP Clients/SAPGUI 7.00rev3/SAPGUI 7.00rev3.app/Contents/Resources/Java/sapGridS.jar
    25.04. 20:30:56.965 TRC: Classes found at:   file:/Applications/SAP Clients/SAPGUI 7.00rev3/SAPGUI 7.00rev3.app/Contents/Resources/Java/sapHtmlViewerCoreS.jar
    25.04. 20:30:56.965 TRC: Classes found at:   file:/Applications/SAP Clients/SAPGUI 7.00rev3/SAPGUI 7.00rev3.app/Contents/Resources/Java/sapHtmlViewerS.jar
    25.04. 20:30:56.965 TRC: Classes found at:   file:/Applications/SAP Clients/SAPGUI 7.00rev3/SAPGUI 7.00rev3.app/Contents/Resources/Java/sapImageS.jar
    25.04. 20:30:56.965 TRC: Classes found at:   file:/Applications/SAP Clients/SAPGUI 7.00rev3/SAPGUI 7.00rev3.app/Contents/Resources/Java/sapTextEditS.jar
    25.04. 20:30:56.965 TRC: Classes found at:   file:/Applications/SAP Clients/SAPGUI 7.00rev3/SAPGUI 7.00rev3.app/Contents/Resources/Java/sapToolBarS.jar
    25.04. 20:30:56.965 TRC: Classes found at:   file:/Applications/SAP Clients/SAPGUI 7.00rev3/SAPGUI 7.00rev3.app/Contents/Resources/Java/sapTreeS.jar
    25.04. 20:30:56.970 TRC: Active trace keys: TRC:CON:C_AGI:C_CON
    25.04. 20:30:57.805 TRC: Active trace keys: TRC:CON:C_AGI:C_CON
    25.04. 20:30:59.797 CON: new GuiConnection
    25.04. 20:30:59.797 CON: GuiConnection.open(conn=/H/10.144.212.138/S/3200&clnt=300&user=gpfister&lang=EN&expert=true,DEM(300) - SAP R/3 4.6c Unit test)
    25.04. 20:30:59.816 CON: new GuiNiNetConnection
    25.04. 20:30:59.818 CON: GuiNiNetConnection.open(conn=/H/10.144.212.138/S/3200&clnt=300&user=gpfister&lang=EN)
    25.04. 20:30:59.818 CON: GuiNiNetConnection.open: resolved hostSpec = /H/10.144.212.138/S/3200
    25.04. 20:31:00.323 CON: -
    25.04. 20:31:00.324 CON: GuiNiNetConnection: sending DIAG data to connection for modus 0
    25.04. 20:31:00.324 CON: -
    25.04. 20:31:00.324 CON: GuiNiNetConnection: sending DIAG data to connection for modus 0
    25.04. 20:31:00.324 C_AGI: calling AgiSessionPool->ParseIt() for modus 0
    25.04. 20:31:00.325 C_AGI: AgiLibAdaptor::onNewPrimary
    25.04. 20:31:00.325 C_CON: AgiLibAdaptor::add
    25.04. 20:31:00.326 C_AGI: AgiLibAdaptor::onChgCodepage(): 1127, MacRoman
    25.04. 20:31:00.327 C_AGI: returned from AgiSessionPool->ParseIt() for modus 0
    25.04. 20:31:00.327 C_CON: AgiLibAdaptor::update
    25.04. 20:31:00.356 C_AGI: AgiAreaAdaptor::update: no client data for control container
    25.04. 20:31:00.359 C_AGI: AgiAreaAdaptor::update: no client data for table view
    25.04. 20:31:06.076 C_AGI: onSendToSrv
    25.04. 20:31:06.076 C_AGI: calling AgiSessionPool->UnParseIt() for modus 0
    25.04. 20:31:06.076 C_AGI: returned from AgiSessionPool->UnParseIt() for modus 0 done
    25.04. 20:31:06.076 CON: GuiNiNetConnection: sending DIAG data to writer thread for modus 0
    25.04. 20:31:06.474 CON: -
    25.04. 20:31:06.474 CON: GuiNiNetConnection: sending DIAG data to connection for modus 0
    25.04. 20:31:06.474 C_AGI: calling AgiSessionPool->ParseIt() for modus 0
    25.04. 20:31:06.475 C_AGI: AgiLibAdaptor::onChgCodepage(): 1127, MacRoman
    25.04. 20:31:06.476 C_AGI: AgiLibAdaptor::onDelAtom
    25.04. 20:31:06.476 C_AGI: AgiLibAdaptor::onNewModal
    25.04. 20:31:06.477 C_AGI: returned from AgiSessionPool->ParseIt() for modus 0
    25.04. 20:31:06.477 C_CON: AgiLibAdaptor::update
    25.04. 20:31:06.489 C_AGI: AgiAreaAdaptor::update: no client data for table view
    25.04. 20:31:10.208 C_AGI: onSendToSrv
    25.04. 20:31:10.208 C_AGI: calling AgiSessionPool->UnParseIt() for modus 0
    25.04. 20:31:10.209 C_AGI: returned from AgiSessionPool->UnParseIt() for modus 0 done
    25.04. 20:31:10.209 CON: GuiNiNetConnection: sending DIAG data to writer thread for modus 0
    25.04. 20:31:10.372 CON: -
    25.04. 20:31:10.373 CON: GuiNiNetConnection: sending DIAG data to connection for modus 0
    25.04. 20:31:10.373 C_AGI: calling AgiSessionPool->ParseIt() for modus 0
    25.04. 20:31:10.373 C_AGI: AgiLibAdaptor::onChgCodepage(): 1127, MacRoman
    25.04. 20:31:10.373 C_AGI: AgiLibAdaptor::onDelContainer
    25.04. 20:31:10.373 C_AGI: AgiLibAdaptor::onDelAtom
    25.04. 20:31:10.374 C_AGI: AgiLibAdaptor::onDelAtom
    25.04. 20:31:10.374 C_AGI: AgiLibAdaptor::onDelAtom
    25.04. 20:31:10.374 C_AGI: AgiLibAdaptor::onDelAtom
    25.04. 20:31:10.374 C_AGI: AgiLibAdaptor::onDelAtom
    25.04. 20:31:10.410 CON: -
    25.04. 20:31:10.410 CON: GuiNiNetConnection: sending DIAG data to connection for modus 0
    25.04. 20:31:10.412 C_AGI: AgiLibAdaptor::onDelAtom
    25.04. 20:31:10.413 C_AGI: AgiLibAdaptor::onDelAtom
    25.04. 20:31:10.413 C_AGI: AgiLibAdaptor::onDelAtom
    25.04. 20:31:10.413 C_AGI: AgiLibAdaptor::onDelTableView
    25.04. 20:31:10.413 C_AGI: AgiLibAdaptor::onDelContainer
    25.04. 20:31:10.413 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.413 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.414 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.414 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.414 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.414 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.414 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.414 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.414 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.415 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.415 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.415 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.415 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.415 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.415 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.415 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.415 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.416 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.416 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.416 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.416 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.416 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.416 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.416 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.417 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.417 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.417 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.417 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.417 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.417 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.417 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.417 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.418 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.418 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.418 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.418 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.418 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.418 CON: -
    25.04. 20:31:10.423 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.423 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.424 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.424 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.423 CON: GuiNiNetConnection: sending DIAG data to connection for modus 0
    25.04. 20:31:10.424 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.424 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.424 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.424 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.424 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.424 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.425 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.425 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.425 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.425 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.425 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.425 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.425 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.425 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.426 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.426 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.426 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.427 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.427 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.427 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.427 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.427 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.427 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.427 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.427 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.427 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.428 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.428 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.428 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.428 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.428 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.428 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.428 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.428 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.429 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.429 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.429 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.429 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.429 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.429 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.429 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.429 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.429 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.429 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.430 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.430 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.430 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.430 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.430 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.430 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.430 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.431 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.431 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.431 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.431 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.431 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.431 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.431 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.431 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.431 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.431 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.432 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:10.432 C_AGI: AgiLibAdaptor::onDelModal
    25.04. 20:31:10.432 C_AGI: returned from AgiSessionPool->ParseIt() for modus 0
    25.04. 20:31:10.432 C_CON: AgiLibAdaptor::update
    25.04. 20:31:10.453 C_AGI: calling AgiSessionPool->ParseIt() for modus 0
    25.04. 20:31:10.453 C_AGI: AgiLibAdaptor::onChgCodepage(): 1127, MacRoman
    25.04. 20:31:10.453 C_AGI: AgiLibAdaptor::onEotPrimary
    25.04. 20:31:10.454 C_AGI: returned from AgiSessionPool->ParseIt() for modus 0
    25.04. 20:31:10.454 C_CON: AgiLibAdaptor::update
    25.04. 20:31:10.455 C_AGI: calling AgiSessionPool->ParseIt() for modus 0
    25.04. 20:31:10.455 C_AGI: AgiLibAdaptor::onChgCodepage(): 1127, MacRoman
    25.04. 20:31:10.455 C_AGI: AgiLibAdaptor::onEotPrimary
    25.04. 20:31:10.455 C_AGI: returned from AgiSessionPool->ParseIt() for modus 0
    25.04. 20:31:10.456 C_CON: AgiLibAdaptor::update
    25.04. 20:31:10.537 CON: -
    25.04. 20:31:10.537 CON: GuiNiNetConnection: sending DIAG data to connection for modus 0
    25.04. 20:31:10.537 C_AGI: calling AgiSessionPool->ParseIt() for modus 0
    25.04. 20:31:10.537 CON: -
    25.04. 20:31:10.537 CON: GuiNiNetConnection: sending DIAG data to connection for modus 0
    25.04. 20:31:10.537 C_AGI: AgiLibAdaptor::onChgCodepage(): 1127, MacRoman
    25.04. 20:31:10.538 C_AGI: AgiLibAdaptor::onEotPrimary
    25.04. 20:31:10.538 C_AGI: returned from AgiSessionPool->ParseIt() for modus 0
    25.04. 20:31:10.538 C_CON: AgiLibAdaptor::update
    25.04. 20:31:10.539 C_AGI: calling AgiSessionPool->ParseIt() for modus 0
    25.04. 20:31:10.539 C_AGI: AgiLibAdaptor::onChgCodepage(): 1127, MacRoman
    25.04. 20:31:10.539 C_AGI: AgiLibAdaptor::onRfcPrimary
    25.04. 20:31:10.540 C_AGI: returned from AgiSessionPool->ParseIt() for modus 0
    25.04. 20:31:10.540 C_CON: AgiLibAdaptor::update
    25.04. 20:31:10.542 C_AGI: onSendToSrv
    25.04. 20:31:10.543 C_AGI: calling AgiSessionPool->UnParseIt() for modus 0
    25.04. 20:31:10.543 C_AGI: returned from AgiSessionPool->UnParseIt() for modus 0 done
    25.04. 20:31:10.543 CON: GuiNiNetConnection: sending DIAG data to writer thread for modus 0
    25.04. 20:31:10.714 CON: -
    25.04. 20:31:10.714 CON: GuiNiNetConnection: sending DIAG data to connection for modus 0
    25.04. 20:31:10.714 C_AGI: calling AgiSessionPool->ParseIt() for modus 0
    25.04. 20:31:10.715 C_AGI: AgiLibAdaptor::onChgCodepage(): 1127, MacRoman
    25.04. 20:31:10.715 C_AGI: AgiLibAdaptor::onGraPrimary()
    25.04. 20:31:10.715 C_AGI: returned from AgiSessionPool->ParseIt() for modus 0
    25.04. 20:31:10.715 C_CON: AgiLibAdaptor::update
    25.04. 20:31:10.731 C_AGI: onSendToSrv
    25.04. 20:31:10.731 C_AGI: calling AgiSessionPool->UnParseIt() for modus 0
    25.04. 20:31:10.731 C_AGI: returned from AgiSessionPool->UnParseIt() for modus 0 done
    25.04. 20:31:10.731 CON: GuiNiNetConnection: sending DIAG data to writer thread for modus 0
    25.04. 20:31:10.896 CON: -
    25.04. 20:31:10.897 CON: GuiNiNetConnection: sending DIAG data to connection for modus 0
    25.04. 20:31:10.897 C_AGI: calling AgiSessionPool->ParseIt() for modus 0
    25.04. 20:31:10.897 C_AGI: AgiLibAdaptor::onChgCodepage(): 1127, MacRoman
    25.04. 20:31:10.897 C_AGI: AgiLibAdaptor::onGraPrimary()
    25.04. 20:31:10.898 C_AGI: returned from AgiSessionPool->ParseIt() for modus 0
    25.04. 20:31:10.898 C_CON: AgiLibAdaptor::update
    25.04. 20:31:10.899 C_AGI: onSendToSrv
    25.04. 20:31:10.899 C_AGI: calling AgiSessionPool->UnParseIt() for modus 0
    25.04. 20:31:10.899 C_AGI: returned from AgiSessionPool->UnParseIt() for modus 0 done
    25.04. 20:31:10.899 CON: GuiNiNetConnection: sending DIAG data to writer thread for modus 0
    25.04. 20:31:11.085 CON: -
    25.04. 20:31:11.086 CON: GuiNiNetConnection: sending DIAG data to connection for modus 0
    25.04. 20:31:11.086 C_AGI: calling AgiSessionPool->ParseIt() for modus 0
    25.04. 20:31:11.086 C_AGI: AgiLibAdaptor::onChgCodepage(): 1127, MacRoman
    25.04. 20:31:11.087 C_AGI: AgiLibAdaptor::onNewModal
    25.04. 20:31:11.088 C_AGI: returned from AgiSessionPool->ParseIt() for modus 0
    25.04. 20:31:11.088 C_CON: AgiLibAdaptor::update
    25.04. 20:31:13.471 C_AGI: onSendToSrv
    25.04. 20:31:13.471 C_AGI: calling AgiSessionPool->UnParseIt() for modus 0
    25.04. 20:31:13.471 C_AGI: returned from AgiSessionPool->UnParseIt() for modus 0 done
    25.04. 20:31:13.472 CON: GuiNiNetConnection: sending DIAG data to writer thread for modus 0
    25.04. 20:31:13.632 CON: -
    25.04. 20:31:13.632 CON: GuiNiNetConnection: sending DIAG data to connection for modus 0
    25.04. 20:31:13.632 C_AGI: calling AgiSessionPool->ParseIt() for modus 0
    25.04. 20:31:13.632 C_AGI: AgiLibAdaptor::onChgCodepage(): 1127, MacRoman
    25.04. 20:31:13.632 C_AGI: AgiLibAdaptor::onDelContainer
    25.04. 20:31:13.633 C_AGI: AgiLibAdaptor::onDelAtom
    25.04. 20:31:13.633 C_AGI: AgiLibAdaptor::onDelAtom
    25.04. 20:31:13.633 C_AGI: AgiLibAdaptor::onDelAtom
    25.04. 20:31:13.633 C_AGI: AgiLibAdaptor::onDelAtom
    25.04. 20:31:13.633 C_AGI: AgiLibAdaptor::onDelAtom
    25.04. 20:31:13.633 C_AGI: AgiLibAdaptor::onDelAtom
    25.04. 20:31:13.633 CON: -
    25.04. 20:31:13.634 C_AGI: AgiLibAdaptor::onDelAtom
    25.04. 20:31:13.634 CON: GuiNiNetConnection: sending DIAG data to connection for modus -1
    25.04. 20:31:13.634 C_AGI: AgiLibAdaptor::onDelAtom
    25.04. 20:31:13.798 C_AGI: AgiLibAdaptor::onDelContainer
    25.04. 20:31:13.798 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.799 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.799 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.799 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.799 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.803 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.803 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.803 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.804 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.804 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.804 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.804 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.804 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.804 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.804 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.804 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.805 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.805 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.805 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.805 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.805 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.805 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.805 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.805 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.805 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.805 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.805 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.805 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.805 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.806 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.806 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.806 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.806 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.806 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.806 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.806 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.806 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.806 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.806 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.806 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.806 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.807 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.807 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.807 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.807 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.807 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.807 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.807 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.807 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.807 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.807 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.807 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.807 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.808 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.808 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.808 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.808 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.808 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.808 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.808 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.808 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.808 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.808 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.808 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.808 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.809 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.809 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.809 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.809 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.809 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.809 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.809 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.809 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.809 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.809 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.809 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.809 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.809 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.810 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.810 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.810 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.810 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.810 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.810 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.810 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.810 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.810 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.810 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.810 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.810 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.811 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.811 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.811 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.811 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.811 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.811 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.811 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.811 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.811 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.811 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.811 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.811 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.812 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.812 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.812 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.812 C_AGI: AgiLibAdaptor::onDelModal
    25.04. 20:31:13.812 C_AGI: returned from AgiSessionPool->ParseIt() for modus 0
    25.04. 20:31:13.812 C_CON: AgiLibAdaptor::update
    25.04. 20:31:13.812 C_CON: AgiLibAdaptor::destroyConnection
    25.04. 20:31:13.812 C_AGI: AgiLibAdaptor::onDelContainer
    25.04. 20:31:13.813 C_AGI: AgiLibAdaptor::onDelAtom
    25.04. 20:31:13.813 C_AGI: AgiLibAdaptor::onDelAtom
    25.04. 20:31:13.813 C_AGI: AgiLibAdaptor::onDelAtom
    25.04. 20:31:13.813 C_AGI: AgiLibAdaptor::onDelAtom
    25.04. 20:31:13.813 C_AGI: AgiLibAdaptor::onDelAtom
    25.04. 20:31:13.813 C_AGI: AgiLibAdaptor::onDelAtom
    25.04. 20:31:13.813 C_AGI: AgiLibAdaptor::onDelAtom
    25.04. 20:31:13.813 C_AGI: AgiLibAdaptor::onDelAtom
    25.04. 20:31:13.813 C_AGI: AgiLibAdaptor::onDelAtom
    25.04. 20:31:13.813 C_AGI: AgiLibAdaptor::onDelAtom
    25.04. 20:31:13.813 C_AGI: AgiLibAdaptor::onDelAtom
    25.04. 20:31:13.814 C_AGI: AgiLibAdaptor::onDelAtom
    25.04. 20:31:13.814 C_AGI: AgiLibAdaptor::onDelAtom
    25.04. 20:31:13.814 C_AGI: AgiLibAdaptor::onDelAtom
    25.04. 20:31:13.814 C_AGI: AgiLibAdaptor::onDelAtom
    25.04. 20:31:13.814 C_AGI: AgiLibAdaptor::onDelAtom
    25.04. 20:31:13.814 C_AGI: AgiLibAdaptor::onDelAtom
    25.04. 20:31:13.814 C_AGI: AgiLibAdaptor::onDelContainer
    25.04. 20:31:13.815 C_AGI: AgiLibAdaptor::onDelAtom
    25.04. 20:31:13.815 C_AGI: AgiLibAdaptor::onDelAtom
    25.04. 20:31:13.815 C_AGI: AgiLibAdaptor::onDelTableView
    25.04. 20:31:13.822 C_AGI: AgiLibAdaptor::onDelContainer
    25.04. 20:31:13.822 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.822 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.822 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.822 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.822 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.822 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.822 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.822 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.822 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.822 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.822 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.823 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.823 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.823 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.823 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.823 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.823 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.823 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.823 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.823 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.823 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.823 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.823 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.823 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.824 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.824 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.824 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.824 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.824 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.825 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.825 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.825 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.825 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.825 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.825 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.825 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.825 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.825 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.825 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.825 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.826 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.826 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.826 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.826 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.826 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.826 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.826 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.826 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.826 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.826 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.826 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.826 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.826 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.827 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.827 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.827 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.827 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.827 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.827 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.827 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.827 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.827 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.827 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.827 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.827 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.827 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.827 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.828 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.828 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.828 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.828 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.828 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.828 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.828 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.828 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.828 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.828 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.828 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.828 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.828 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.829 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.829 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.829 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.829 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.829 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.829 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.829 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.829 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.829 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.829 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.829 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.829 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.829 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.829 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.830 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.830 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.830 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.830 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.830 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.830 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.830 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.830 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.830 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.830 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.830 C_AGI: AgiLibAdaptor::onDelMenuItem
    25.04. 20:31:13.830 C_AGI: AgiLibAdaptor::onDelPrimary
    25.04. 20:31:13.831 C_CON: AgiLibAdaptor::destroy
    25.04. 20:31:13.831 CON: GuiConnection.destroyNetConnectionAndParser
    25.04. 20:31:13.832 CON: GuiNiNetConnection: sending CLOSE data to writer thread

  • SAP DCOM Connector message wrong codepage

    Hi!
    I need help.
    I've got RFC module that executing report through submit.
    Report is generating error messages. When I'm trying to call RFC module through SAP DCOM Connector, I'm always get message text with wrong codepage. Than I'm saying wrong code page, I mean sap server iternal code page, not a windows code page. Any other data transfer works fine with correct windows code page.
    SAP code page is 1500.
    Windows code page is 1504.
    Do you have any solutions?

    I'm using SAP DCOM Connector Version 6.20(english). I don't know where I can get russian version of this product. It seems there is no such one. I don't really know who wrong or right, maybe SAP or DCOM software, because in trace log of DCOM connector I've got something like this:
    >>>>         RFC MESSAGE/ERROR : 104
    RFC_ERROR_SYSTEM_FAILURE
    ³àãßßþÒþÙ ßþØáÚ ÝÕ àÐ×àÕèÕÝ.
    >>>> rfccoctx:985  closing RFC connection (context 016B6708)
    >>>>     FREE abrfcio.c 3253 (26582468)
      -{4A8EB0A1-4D42-44C0-8F2D-1B359DAE74CC}
    Trace file opened at 20050727 132222 Russian Dayligh, SAP-REL 620,0,480 RFC-VER 3 525755 MT-SL
    >>>> rfccopar:100  End Function ( Parameter FILESIZE: Type 8 Length 4 Variant 16387 Req. Vartype 16387 ).
    >>>> rfccopar:100  End Function ( Parameter HTML: Type 5 Length 255 Variant 16393 Req. Vartype 9 ).
    >>>> rfccopar:100  End Function ( Parameter PAR: Type 5 Length 286 Variant 9 Req. Vartype 9 ).
    >>>> rfccopar:100  End Function ( Parameter PDF: Type 5 Length 134 Variant 16393 Req. Vartype 9 ).
    >>>> rfccopar:100  End Function ( Parameter RETURN: Type 5 Length 548 Variant 16393 Req. Vartype 9 ).
    >>>> rfccoctx:1077 SetAbort (context 016B6708)
    sapmtx.h:1273 Error code 0x80004004 ().
    >>>> rfccoctx:720  return to dispenser (context 016B6708)
    >>>> rfccosrc:184  Dispenser: returning resource 016B6718 ...
    >>>> rfccosrc:195  Dispenser: resource 016B670C broken ...
    >>>> rfccoctx:1029 releasing resource (context 016B6708)
    Text of error message we have here in wrong code page(SAP internal-1500), then other text from SAP in correct code page(1504). How to force DCOM software to use correct code page for FREE messages?

  • To upload a RTF and a PDF file to SAP R/3 and print the same through SAP

    Hi,
    I have a requirement to upload a PDF file and a RTF file to SAP R/3 and print the same.
    I wrote the following code for uploading a RTF file to SAP R/3 and print the same. However, the problem is , the formatting present in the RTF document( bold/italics..etc) is not being reflected when I do the 'print-preview' after the executing the code below :
    report z_test_upload .
    data: begin of itab occurs 0,
             rec type string,
          end of itab.
    data: options like itcpo.
    data: filename type string,
          count type i.
    data: filetype(10) type c value 'ASC'.
    DATA: HEADER  LIKE THEAD    OCCURS   0 WITH HEADER LINE.
    DATA: NEWHEADER  LIKE THEAD    OCCURS   0 WITH HEADER LINE.
    DATA: ITFLINE LIKE TLINE    OCCURS   0 WITH HEADER LINE.
    DATA: RTFLINE LIKE HELP_STFA OCCURS   0 WITH HEADER LINE.
    DATA:   string_len TYPE i,
            n1 TYPE i.
    selection-screen begin of block b1.
      parameter: p_file1(128) default 'C:\test_itf.rtf'.
    selection-screen end of block b1.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file1.
      CALL FUNCTION 'F4_FILENAME'
           IMPORTING
                file_name = p_file1.
    start-of-selection.
    move p_file1 to filename.
    call function 'GUI_UPLOAD'
         EXPORTING
              filename                = filename
              filetype                = filetype
         TABLES
              data_tab                = itab
         EXCEPTIONS
              file_open_error         = 1
              file_read_error         = 2
              no_batch                = 3
              gui_refuse_filetransfer = 4
              invalid_type            = 5
              no_authority            = 6
              unknown_error           = 7
              bad_data_format         = 8
              header_not_allowed      = 9
              separator_not_allowed   = 10
              header_too_long         = 11
              unknown_dp_error        = 12
              access_denied           = 13
              dp_out_of_memory        = 14
              disk_full               = 15
              dp_timeout              = 16
              others                  = 17.
    if sy-subrc <> 0.
      message id sy-msgid type sy-msgty number sy-msgno
                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    endif.
    loop at itab.
      string_len = strlen( itab-rec ).
      n1 = string_len DIV 134.
      ADD 1 TO n1.
      DO n1 TIMES.
        rtfline-line = itab-rec.
        APPEND rtfline.
        SHIFT itab-rec BY 134 PLACES.
      ENDDO.
    endloop.
    HEADER-TDSTYLE = 'S_DOCUS1'.
    HEADER-TDFORM = 'S_DOCU_SHOW'.
    header-tdspras = 'E'.
    CALL FUNCTION 'CONVERT_TEXT'
      EXPORTING
      CODEPAGE               = '0000'
        DIRECTION              = 'IMPORT'
        FORMAT_TYPE            = 'RTF'
       FORMATWIDTH            = 72
        HEADER                 = header
        SSHEET                 = 'WINHELP.DOT'
        WITH_TAB               = 'X'
        WORD_LANGU             = SY-LANGU
        TABLETYPE              = 'ASC'
      TAB_SUBSTITUTE         = 'X09  '
      LF_SUBSTITUTE          = ' '
      REPLACE_SYMBOLS        = 'X'
      REPLACE_SAPCHARS       = 'X'
      MASK_BRACKETS          = 'X'
      IMPORTING
        NEWHEADER              = NEWHEADER
      WITH_TAB_E             =
      FORMATWIDTH_E          =
      TABLES
        FOREIGN                = RTFLINE
        ITF_LINES              = ITFLINE.
      LINKS_TO_CONVERT       =
    if sy-subrc <> 0.
    endif.
    CALL FUNCTION 'PRINT_TEXT_ITF'
      EXPORTING
         HEADER        = newheader
         OPTIONS       = options
    IMPORTING
      RESULT        =
      TABLES
        LINES         = itfline.
    if sy-subrc <> 0.
    endif.
    Any hints or suggestions to solve this problem will be highly appreciated.
    Thanks,
    Avra

    Hi Vishwas,
    Check out the thread [Efficient way of saving documents uploaded|Re: Efficient way of saving documents uploaded by users; and check the blog by Raja Thangamani.
    Also check the thread [Export Images through Function Modules   |Export Images through Function Modules;.
    Hope it helps you.

  • Error "codepage could not be determined for the receiver-system"

    Hi,
    we use the idoc-adapter to send message from mySAP ERP to PI.
    All worked fine.
    So, this morning I have changed the datatype of the messageId from "char" to "int" in mySAP ERP in the customizing menue (install param). So, no message received in SAP PI.
    When I start transction "we05" in mySAPERP" I get the following error:
    "codepage could not be determined for the receiver-system" status 02.
    I have changed the datatyp to "char" but the same probleme
    Can anybody help me please?
    Regards
    Stefan

    This error shouldn't occur unless there is some modification at the OS level codepages.
    Please check the entried in the RFC destination for connecting to the XI system. Unicode settings.
    Regards,
    Prateek

  • SAP GUI 7.2 Crashing after server selection

    Hi everyone,
    I'm having an issue with one of our users. It has been working fine before. Windows 7 32bit. Whenever she selects a server to log in to it just closes out SAPGUI. I have tried reinstalling, updating to the latest patchlevel and removing everything SAP related off the machine. This is only happening to one user. After figuring out how to make logon traces I've been trying to figure out the logs. One log that caught my eye was GUIDLLEN.trc. 
    SAP AG, Trace File  ******************************
    Main trace mode: Error, Warning, Developer Notes and additional data
    Program:      C:\Program Files\SAP\FrontEnd\sapgui\saplogon.exe
    SAPPCTXT CALL: SapPcTxtLoad(path: NULL, prj: GUIDLL lang: EN, trc = 3, errmode = 0)
    Path changed from >(null)< to >C:\Program Files\SAP\FrontEnd\SAPGUI\lang<
    HEADER: key: SAPPCTXTHEADER_
            fileformat: 2
            release: 7200
            project: GUIDLL
            language: EN
            codepage: 1100
            timestamp: 24.08.2011-15:54
            timestamp: OK
    ENTRY : >DETAILED_ERR_DESCRIPTION< >0128< >Do you want to see the detailed error description?\n<
    ENTRY : >GUI_ERR:RECREAD< >0128< >Cannot read from playback file.\n[rc: %d records: %d]<
    ENTRY : >GUI_ERR_ANSWRITE1< >0128< >Cannot write response file (Position 1).\n[rc: %d]<
    ENTRY : >GUI_ERR_ANSWRITE2< >0128< >Cannot write response file (Position 2).\n[rc: %d]<
    ENTRY : >GUI_ERR_ANSWRITE3< >0128< >Cannot write response file (Position 3).\n [rc: %d]<
    ENTRY : >GUI_ERR_CLIENTEXEC< >0128< >'%s'\ncould not be started (rc=%d):\n%s<
    ENTRY : >GUI_ERR_COMPRESS< >0128< >Compression error [rc = %d]- program will be terminated\n<
    ENTRY : >GUI_ERR_DECOMPRESS_SEND< >0128< >Decompression error (sending) - program will be terminated.\n[CsDecompr: %d]<
    ENTRY : >GUI_ERR_EYECATCH1< >0130< >%s has an invalid file format.\n\nThis file has been recorded with an SAP GUI<
    ENTRY : >GUI_ERR_EYECATCH2< >0130< > older than 3.1G\nor is not a play file at all.\nUse only files recorded<
    ENTRY : >GUI_ERR_EYECATCH3< >0130< > with SAP GUI 3.1G or higher for replay\nwith this SAP GUI.<
    ENTRY : >GUI_ERR_FILEWRITE< >0128< >Cannot write %sfile '%s'<
    ENTRY : >GUI_ERR_FOPEN< >0128< >Cannot open %sfile '%s'<
    ENTRY : >GUI_ERR_INVAL_MSG_VERS< >0128< >Installation problem. Invalid message version.\nSession will be canceled<
    ENTRY : >GUI_ERR_LB_ADDITIONAL< >0128< >Additional error information:\n\n%s<
    ENTRY : >GUI_ERR_LB_GENERAL< >0128< >Logon balancing error %d:\n\n%s<
    ENTRY : >GUI_ERR_LB_INITIALIZATION< >0128< >Logon balancing: initialization error (rc=%d)<
    ENTRY : >GUI_ERR_LB_MSG_SERVER< >0128< >Logon balancing error %d: Cannot connect to message server (rc=%d)\nDo you want to see detailed error information?<
    ENTRY : >GUI_ERR_LB_MSG_SERVER_CONNECT< >0128< >Logon balancing error %d; could not connect to message server (rc=%d)\n<
    ENTRY : >GUI_ERR_LB_NO_ADDITIONAL< >0128< >No additional error information available<
    ENTRY : >GUI_ERR_LB_PARSER< >0128< >Logon balancing: parser error in '%s'<
    ENTRY : >GUI_ERR_LB_SAPROUTER< >0128< >Logon balancing error %d: Set SAProuter failed (rc=%d)<
    ENTRY : >GUI_ERR_LB_TIMEOUT< >0128< >Logon balancing error %d: Set timeout failed (rc=%d)<
    ENTRY : >GUI_ERR_LB_UNKNOWN_WO_STR< >0128< >Error in logon balancing routine (rc=%d, err=%d)<
    ENTRY : >GUI_ERR_LB_UNKNOWN_W_STR< >0128< >Error in logon balancing routine (rc=%d, err=%d):\n\n%s<
    ENTRY : >GUI_ERR_OPTION< >0128< >Invalid playback/record option<
    ENTRY : >GUI_ERR_OVERHEAD< >0128< >Error/Info in protocol OVERHEAD<
    ENTRY : >GUI_ERR_RECREAD< >0128< >Cannot read from playback file.\n[rc: %d records: %d]<
    ENTRY : >GUI_ERR_RECWRITE1< >0128< >Cannot write to record file (Position 1)\n[rc: %d]<
    ENTRY : >GUI_ERR_RECWRITE2< >0128< >Cannot write to record file (Position 2)\n[rc: %d]<
    ENTRY : >GUI_R2_ACCESS< >0128< >R/2 systems are no longer supported<
    ENTRY : >NO_DETAILED_DESCRIPTION< >0128< >No additional error information available<
    ENTRY : >NO_DETAILED_DESCRIPTION2< >0128< >No additional error information available<
    ENTRY : >NUM_RECORDS< >0128< >Number of records %d<
    ENTRY : >SYS_MESSAGE< >0128< >SAP System Message:\n%s<
    ENTRY : >GUI_ERR_ALLOCATE_MEMORY< >0128< >Memory allocation failed<
    ENTRY : >GUI_ERR_DECOMPRESS_RECV< >0128< >Decompression error (receiving) - Program will be terminated<
    ENTRY : >GUI_ERR_LOGREADING< >0128< >Failed to read log file<
    ENTRY : >GUI_ERR_NETWORK_LOST< >0128< >Network connection for session was closed<
    File EOF detected
    Shortcut keys existing in the texts ...
    Shortcut key generation ...
    CALL: SapPcTxtLoad returns ok (tid 01D128B8)
    Any idea on why this is doing that? I would rather not reinstall the OS on the machine.

    Hello Jun,
    You may be lucky if it installs.  By the time Windows 7 came out SAP had de-supported SAP GUI 7.20.  The SAPSetup.exe release may not be able to recognize any recently updated Microsoft OS DLLs necessary for installation.
    However, I would recommend you check the services file to ensure the necessary ports are correct and that either your local firewall or network firewall isn't blocking any of these ports.  This should clear up the error: "Cannot connect to message server".
    I can also see there is a permission issue with open, write read with %sfile.  Can you ensure this has administrator permission's or permitted to do these activities.
    Cheers,
    Dan Mead

  • SAP Ides ECC 6.0 Install: Import ABAP - Package SAPDODS Error - ORA-00903

    Experts,
    Good Morning!
    I'm trying to install SAP IDES ECC 6.0 version on a Windows 2008 R2 Server with Oracle 11g DB (11.2).
    System Info: 16GM RAM & 600GB Hdd. Prereqs passed.
    I'm getting the following error during the Import ABAP phase (16 of 29) in the sapinst log:
    "An error occurred while processing option Enhancement Package 6 for SAP ERP 6.0 > SAP Application Server ABAP > Oracle > Central System > Central System( Last error reported by the step: Program 'Migration Monitor' exits with error code 103. "
    Here's the dump of import_monitor.java.log
    java version "1.4.2_32"
    Java(TM) 2 Runtime Environment, Standard Edition (build 4.1.012)
    SAP Java Server VM (build 4.1.012 1.6-b03, Oct 21 2011 14:18:45 - 41_REL - optU - windows amd64 - 6 - bas2:161688 (mixed mode))
    Import Monitor jobs: running 1, waiting 1, completed 141, failed 0, total 143.
    Loading of 'SAPDODS' import package: ERROR
    Import Monitor jobs: running 0, waiting 1, completed 141, failed 1, total 143.
    Here's the dump of import_monitor.log:
    INFO: 2014-07-05 13:42:53
    Data codepage 4103 is determined using TOC file 'C:\Target\Export1\DATA\D010TAB.TOC' for package 'D010TAB'.
    TRACE: 2014-07-05 13:42:53 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPDODS' import package is started.
    TRACE: 2014-07-05 13:42:53 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'SAPDODS' import package into database:
    C:\usr\sap\AVV\SYS\exe\uc\NTAMD64\R3load.exe -i SAPDODS.cmd -dbcodepage 4103 -l SAPDODS.log -stop_on_error
    ERROR: 2014-07-05 13:42:54 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPDODS' import package is interrupted with R3load error.
    Process 'C:\usr\sap\AVV\SYS\exe\uc\NTAMD64\R3load.exe -i SAPDODS.cmd -dbcodepage 4103 -l SAPDODS.log -stop_on_error' exited with return code 2.
    For mode details see 'SAPDODS.log' file.
    Standard error output:
    sapparam: sapargv(argc, argv) has not been called!
    sapparam(1c): No Profile used.
    sapparam: SAPSYSTEMNAME neither in Profile nor in Commandline
    WARNING: 2014-07-05 13:43:21
    Cannot start import of packages with views because not all import packages with tables are loaded successfully.
    WARNING: 2014-07-05 13:43:21
    1 error(s) during processing of packages.
    INFO: 2014-07-05 13:43:21
    Import Monitor is stopped.
    Here's the log of SAPDODS...
    C:\usr\sap\AVV\SYS\exe\uc\NTAMD64\R3load.exe: START OF LOG: 20140705134253
    C:\usr\sap\AVV\SYS\exe\uc\NTAMD64\R3load.exe: sccsid @(#) $Id: //bas/720_REL/src/R3ld/R3load/R3ldmain.c#13 $ SAP
    C:\usr\sap\AVV\SYS\exe\uc\NTAMD64\R3load.exe: version R7.20/V1.4 [UNICODE]
    Compiled Aug 16 2011 02:26:36
    patchinfo (patches.h): (0.098) DB6: correction for R3load PL 91 on HP-UX and SOLARIS (note 1609719)
    process id 1488
    C:\usr\sap\AVV\SYS\exe\uc\NTAMD64\R3load.exe -i SAPDODS.cmd -dbcodepage 4103 -l SAPDODS.log -stop_on_error
    DbSl Trace: ORA-1403 when accessing table SAPUSER
    (DB) INFO: connected to DB
    (DB) INFO: DbSlControl(DBSL_CMD_NLS_CHARACTERSET_GET): UTF16
    (SQL) INFO: Searching for SQL file SQLFiles.LST
    (SQL) INFO: SQLFiles.LST not found
    (SQL) INFO: Searching for SQL file C:\Target\Export1\DB/SQLFiles.LST
    (SQL) INFO: C:\Target\Export1\DB/SQLFiles.LST not found
    (SQL) INFO: Searching for SQL file DODS.SQL
    (SQL) INFO: DODS.SQL not found
    (SQL) INFO: Searching for SQL file C:\Target\Export1\DB/ORA/DODS.SQL
    (SQL) INFO: found C:\Target\Export1\DB/ORA/DODS.SQL
    (SQL) INFO: Trying to open C:\Target\Export1\DB/ORA/DODS.SQL
    (SQL) INFO: C:\Target\Export1\DB/ORA/DODS.SQL opened
    (DB) ERROR: DDL statement failed
    (DROP TABLE "/BI0/APERS_BOD00")
    DbSlExecute: rc = 103
      (SQL error 942)
      error message returned by DbSl:
    ORA-00942: table or view does not exist
    (IMP) INFO: a failed DROP attempt is not necessarily a problem
    DbSl Trace: Error 903 in exec_immediate() from oci_execute_stmt(), orpc=0
    DbSl Trace: ORA-00903 occurred at SQL stmt (parse error offset=15)
    (DB) ERROR: DDL statement failed
    (  CREATE TABLE [/BI0/APERS_BOD00]         (  [TCTUSERNM] nvarchar(000012)          NOT NULL  ,           [TCTOBJVERS] nvarchar(000001)          NOT NULL  ,           [TCTSYSID] nvarchar(000010)          NOT NULL  ,           [TCTQUACT] nvarchar(000001)          NOT NULL  ,           [TCTOBJNM] nvarchar(000040)          NOT NULL  ,           [TCTTLOGO] nvarchar(000004)          NOT NULL  ,           [RECORDMODE] nvarchar(000001)          NOT NULL  ,           [TCTTIMSTMP] nvarchar(000014)          NOT NULL   )          WITH ( DATA_COMPRESSION = PAGE )   )
    DbSlExecute: rc = 99
      (SQL error 903)
      error message returned by DbSl:
    ORA-00903: invalid table name
    (DB) INFO: disconnected from DB
    C:\usr\sap\AVV\SYS\exe\uc\NTAMD64\R3load.exe: job finished with 1 error(s)
    C:\usr\sap\AVV\SYS\exe\uc\NTAMD64\R3load.exe: END OF LOG: 20140705134254
    FYI - A retry does not help. Also tried to search for the error on scn, google but haven't been able to find the right solution.
    Can you help?
    Regards,
    Cobain.

    Divyanshu - sorry to ask but can you explain why i need to update r3load and r3trans to resolve this error? Just want to understand why I'm doing a correction so I can learn from the same.
    Also, can you clarify the file update process:
    For R3load:
    a) the r3load used by the command is dated 8/16/2011 (location:C:\usr\sap\AVV\SYS\exe\uc\NTAMD64\...)
    b) the r3load i have in my db folder is dated 10/23/2011 (location:C:\Final\Installer\BS7i2011_Installation_Master_\DATA_UNITS\BS2011_IM_WINDOWS_X86_64\ORA\UC\...)
    Do i replace (a) with (b)?
    For R3trans:
    How do I update this file?
    - Cobain.

  • SAP IDES ECC 6.0 Installation Problems

    Hello SAP-Experts!<br>
    <br>
    I'm installting an SAP System for the first time and have some problems now.
    <br>
    The System I want to install is an IDES mySAP ERP 2005 /ECC 6.0 on MS SQL 2005 Database. (Based on AS ABAP)
    I have problems with the database instance. In the 14 of 16 Phase the ABAP import fails in the 6 import job.<br>
    <br>
    The logs extracts are showing the following: <br>
    <br><br>
    <b>import_monitor.java.log:</b><br>
    <br>
    Loading of 'SAPAPPL1_10' import package: OK<br>
    Import Monitor jobs: running 9, waiting 59, completed 4, failed 0, total 72.<br>
    Import Monitor jobs: running 10, waiting 58, completed 4, failed 0, total 72.<br>
    Loading of 'PCL2' import package: OK<br>
    Import Monitor jobs: running 9, waiting 58, completed 5, failed 0, total 72.<br>
    Import Monitor jobs: running 10, waiting 57, completed 5, failed 0, total 72.<br>
    Loading of 'SAPCLUST' import package: ERROR<br>
    Import Monitor jobs: running 9, waiting 57, completed 5, failed 1, total 72.<br>
    Import Monitor jobs: running 10, waiting 56, completed 5, failed 1, total 72.<br>
    Loading of 'SAPSDIC_2' import package: OK<br>
    Import Monitor jobs: running 9, waiting 56, completed 6, failed 1, total 72.<br>
    Import Monitor jobs: running 10, waiting 55, completed 6, failed 1, total 72.<br>
    Loading of 'SAPSDIC_3' import package: OK<br>
    Import Monitor jobs: running 9, waiting 55, completed 7, failed 1, total 72.<br>
    Import Monitor jobs: running 10, waiting 54, completed 7, failed 1, total 72.<br>
    .....<br>
    <br>
    <b>SAPCLUST.LOG:</b><br>
    <br><br>
    (DB) INFO: REGUC created<br>
    (DB) INFO: REGUC~0 created<br>
    (IMP) INFO: import of REGUC completed (146737 rows) #20070206184732<br>
    (DB) INFO: RFBLG created<br>
    (DB) INFO: RFBLG~0 created<br>
    myCluster (63.15.Imp): 1595: inconsistent settings for table position validity <br>detected.<br>
    myCluster (63.15.Imp): 1598: nametab says table positions are not valid.<br>
    myCluster (63.15.Imp): 1601: alternate nametab says table positions are valid.<br>
    myCluster (63.15.Imp): 1605: for field 305 of alternate nametab displacement is <br>3134, yet dbtabpos shows 3244.<br>
    myCluster (63.15.Imp): 1608: character length is 2 (in) resp. 1 (out).<br>
    myCluster (63.15.Imp): 1255: unable to retrieve nametab info for logic table <br>BSEG      .<br>
    myCluster (63.15.Imp): 8300: unable to acquire nametab info for logic table <br>BSEG      .<br>
    myCluster (63.15.Imp): 2900: failed to convert cluster data of cluster item.<br>
    myCluster: RFBLG      *800**0001**0100000000**1995*<br>
    myCluster (63.15.Imp): 320: error during conversion of cluster item.<br>
    myCluster (63.15.Imp): 323: affected physical table is RFBLG.<br>
    (CNV) ERROR: code page conversion failed<br>
    <br>
                 rc = 2<br>
    <br>
    <br>
    .--============--
    RSCP - Error
    `----
    <br>
    (DB) INFO: RFMHN created<br>
    <br>
    (DB) INFO: RFMHN~0 created<br>
    <br><br>
    <b>IMPORT_MONITOR.LOG:</b><br>
    <br>
    ERROR: 2007-02-06 18:49:44 com.sap.inst.migmon.LoadTask run<br>
    <br>
    Loading of 'SAPCLUST' import package is interrupted with R3load error.<br>
    <br>
    Process '
    vsids\sapmnt\IDS\SYS\exe\nuc\NTI386\R3load.exe -i SAPCLUST.cmd -dbcodepage 1100 -l SAPCLUST.log -loadprocedure fast' exited with return code -1,073,741,819.<br>
    <br>
    For mode details see 'SAPCLUST.log' file.<br>
    <br>
    Standard error output:<br>
    <br>
    sapparam: sapargv( argc, argv) has not been called.<br>
    <br>
    sapparam(1c): No Profile used.<br>
    <br>
    sapparam: SAPSYSTEMNAME neither in Profile nor in Commandline<br>
    <br>
    <b>SAPINST.LOG:</b><br>
    <br>
    WARNING 2007-02-06 17:28:23<br>
    <br>
    Errors when executing sql command: p nr="0" If this message is displayed as a warning - it can be ignored. If this is an error - call your SAP support<br>
    <br><br><br><br>
    What can I do now? What is the problem here?<br>
    Hope you can help here. <br>
    <br>
    Regards,<br>
    Lukas<br>

    Hello
    I would recommend you uninstall SAP and SQL, then reinstall SQL using the SAP provided script.  This will ensure your codepage is set correctly.
    I would also recommend you install this system as a Unicode system.
    Thanks
    N.P.C

  • SAP GUI (SAP LOGON 620).Problem connecting to R/3

    Hi I Installed SAP 4.7 successfully.I could see SAP R3 Management console started properly.After Installing SAP GUI,I tried to connect from SAP Logon.I get an error ,A box opens
    Which has title 'Syntax Errors'
    and fields in the box are,
    Syntax error in program -
    in include                      -
    in line                           -
    Last changed by           -
    Author                         -
    Any help on this would be greatly appreciated.I tried to google but could not find any reasonable answer.
    I also tried to connect to R/3 from other box but the same result
    Thanks in advance
    Durga

    Mantosh,
    I dont see any user defined on my logon pad.All I see Proerties,Groups,Server,New,Delete.
    Manas,
    Still no luck.I changed as adviced by bu still I get 'Sytax Errors' window.
    Here is my SAPLogon pad after the changes you suggested.
    [Configuration]
    SessManNewKey=4
    [MSWinPos]
    NormX=38
    NormY=71
    [Router]
    Item1=
    Item2=
    [Router2]
    Item1=
    Item2=
    [RouterChoice]
    Item1=0
    Item2=0
    [Server]
    Item1=10.10.10.12
    Item2=SR1
    [Database]
    Item1=00
    Item2=
    [System]
    Item1=3
    Item2=3
    [Description]
    Item1=sap 4.7d
    Item2=SAP 4.7E
    [Address]
    Item1=
    Item2=
    [MSSysName]
    Item1=SR1
    Item2=
    [MSSrvName]
    Item1=
    Item2=
    [MSSrvPort]
    Item1=sapmsSR1
    Item2=
    [SessManKey]
    Item1=3
    Item2=2
    [SncName]
    Item1=
    Item2=
    [SncChoice]
    Item1=0
    Item2=0
    [Codepage]
    Item1=1100
    Item2=1100
    [CodepageIndex]
    Item1=-1
    Item2=-1
    [Origin]
    Item1=USEREDIT
    Item2=USEREDIT
    [LowSpeedConnection]
    Item1=1
    Item2=0

  • How to upload data from excel to SAP and options to be used

    How to upload data from excel to SAP and options to be used
    thank you,
    Regards,
    Jagrut Bharatkumar shukla

    Hi Jagrut,
        You can use gui_upload.
    chk the sample program mentioned below.
    REPORT ZFTP .
    DATA: BEGIN OF I_FILE OCCURS 0,
    DATA(2000) TYPE C,
    END OF I_FILE.
    DATA: BEGIN OF I_FILE2 OCCURS 0,
    DATA(2000) TYPE C,
    END OF I_FILE2.
    DATA: W_COUNT TYPE I.
    PARAMETERS: P_FILEN TYPE STRING,
    P_FILE2 TYPE STRING,
    P_NUM(4) TYPE N..
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_FILEN.
    PERFORM F_FILE_GET USING P_FILEN TEXT-G01.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_FILE2.
    PERFORM F_FILE_GET USING P_FILE2 TEXT-G01.
    START-OF-SELECTION.
    CALL FUNCTION 'GUI_UPLOAD'
    EXPORTING
    filename = P_FILEN
    FILETYPE = 'ASC'
    HAS_FIELD_SEPARATOR = 'X'
    HEADER_LENGTH = 0
    READ_BY_LINE = 'X'
    DAT_MODE = ' '
    CODEPAGE = ' '
    IGNORE_CERR = ABAP_TRUE
    REPLACEMENT = '#'
    CHECK_BOM = ' '
    VIRUS_SCAN_PROFILE =
    NO_AUTH_CHECK = ' '
    IMPORTING
    FILELENGTH =
    HEADER =
    tables
    data_tab = I_FILE
    IF SY-SUBRC <> 0.
    MESSAGE E024(Z1).
    ENDIF.
    LOOP AT I_FILE.
    W_COUNT = W_COUNT + 1.
    IF NOT W_COUNT > P_NUM.
    MOVE I_FILE TO I_FILE2.
    APPEND I_FILE2.
    ENDIF.
    ENDLOOP.
    CALL FUNCTION 'GUI_DOWNLOAD'
    EXPORTING
    BIN_FILESIZE =
    filename = P_FILE2
    FILETYPE = 'ASC'
    APPEND = ' '
    WRITE_FIELD_SEPARATOR = 'X'
    HEADER = '00'
    TRUNC_TRAILING_BLANKS = ' '
    WRITE_LF = 'X'
    COL_SELECT = ' '
    COL_SELECT_MASK = ' '
    DAT_MODE = ' '
    CONFIRM_OVERWRITE = ' '
    NO_AUTH_CHECK = ' '
    CODEPAGE = ' '
    IGNORE_CERR = ABAP_TRUE
    REPLACEMENT = '#'
    WRITE_BOM = ' '
    TRUNC_TRAILING_BLANKS_EOL = 'X'
    WK1_N_FORMAT = ' '
    WK1_N_SIZE = ' '
    WK1_T_FORMAT = ' '
    WK1_T_SIZE = ' '
    IMPORTING
    FILELENGTH =
    tables
    data_tab = I_FILE2
    FIELDNAMES =
    *& Form F_FILE_GET
    text
    -->P_P_FILEN text
    -->P_TEXT_G01 text
    FORM F_FILE_GET USING L_FILENA L_TEXT.
    CALL FUNCTION 'WS_FILENAME_GET'
    EXPORTING
    DEF_FILENAME = ' '
    DEF_PATH = ' '
    MASK = ',.,*.TXT.'
    MODE = 'O'
    TITLE = L_TEXT
    IMPORTING
    FILENAME = L_FILENA
    rc =
    EXCEPTIONS
    INV_WINSYS = 1
    NO_BATCH = 2
    SELECTION_CANCEL = 3
    SELECTION_ERROR = 4
    OTHERS = 5
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Reward if helpful.
    Regards,
    Harini.S

  • Communication b/w SAP and VB .exe file - Very urgent.

    hi,
      I am currently in a project implementing SAP for a cement manufacturing company. Here we have a VB .exe file which takes parameters and return values. now we need to connect this to application to SAP R/3 to pass data to that application and access the data from that .exe file.
    Note: we don't have any source code for that vb .exe file its a third party software.
    Its an very urgent one....
    please guide me how to do it with all steps.
    Any material please pass to [email protected]
    Thanks in advance.

    form grosswt .
      refresh itab3.
      clear itab3.
       Executing VB EXE file to get the weight from weigh bridge
      call function 'WS_EXECUTE'
       exporting
          DOCUMENT                 = ' '
          CD                       = ' '
          COMMANDLINE              = ' '
         inform                   = 'X'
           cd      = 'C:\SAPWEI'
         program                  = 'C:\sapwei\MyVB.exe'
          STAT                     = ' '
          WINID                    = ' '
          OSMAC_SCRIPT             = ' '
          OSMAC_CREATOR            = ' '
          WIN16_EXT                = ' '
          EXEC_RC                  = ' '
        IMPORTING
          RBUFF                    =
        EXCEPTIONS
          FRONTEND_ERROR           = 1
          NO_BATCH                 = 2
          PROG_NOT_FOUND           = 3
          ILLEGAL_OPTION           = 4
          GUI_REFUSE_EXECUTE       = 5
          OTHERS                   = 6
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
       Fetching Value from VB text file
      call function 'WS_UPLOAD'
       exporting
        CODEPAGE                      = ' '
         filename                      = 'C:\sapwei\w1.txt'
        FILETYPE                      = 'ASC'
        HEADLEN                       = ' '
        LINE_EXIT                     = ' '
        TRUNCLEN                      = ' '
        USER_FORM                     = ' '
        USER_PROG                     = ' '
        DAT_D_FORMAT                  = ' '
      IMPORTING
        FILELENGTH                    =
        tables
          data_tab                      = itab3
      EXCEPTIONS
        CONVERSION_ERROR              = 1
        FILE_OPEN_ERROR               = 2
        FILE_READ_ERROR               = 3
        INVALID_TYPE                  = 4
        NO_BATCH                      = 5
        UNKNOWN_ERROR                 = 6
        INVALID_TABLE_WIDTH           = 7
        GUI_REFUSE_FILETRANSFER       = 8
        CUSTOMER_ERROR                = 9
        NO_AUTHORITY                  = 10
        OTHERS                        = 11
      if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      endif.
      loop at itab3.
        v1 = itab3-num.
        pgrwt = v1.
      endloop.
      message 'Save Gross Weight' type 'S'.
    endform.                    " grosswt

  • Unable to login: SAP System Message: Dynpro does not exist

    Hello All,
    I'm created a test system to practice our upgrade post steps on.  I created a pared down copy of one of our other systems.  When I try to login, I get a popup message saying: Dynpro does not exist.
    To create the pared down version, we used empty files for:
    COEP  
    GLPCA 
    BALDAT
    MSEG  
    BSIS  
    LIPS  
    LTAP  
    CE1LPOC
    ZHYPFIT
    BALHDR
    VBFA  
    COSP  
    COSB  
    CDCLS 
    ZHYPF2A
    /IRM0760
    CDHDR     
    COSS      
    CMFP      
    CHVW      
    RESB      
    ZHYPFIO   
    AUSP      
    VBOX      
    JCDS      
    VBAP      
    We don't think these being empty is the problem, but I wanted to mention it just incase it is. 
    Below is the dev_w0 log.  I've been searching Google / SDN / OSS for some of the errors but haven't come up with anything yet.
    Any insight you might have into this would be appreciated.  Thank you.
    ~TJ
    trc file: "dev_w0", trc level: 1, release: "700"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, MJ
    M sysno      79
    M sid        Q60
    M systemid   324 (IBM iSeries with OS400)
    M relno      7000
    M patchlevel 0
    M patchno    172
    M intno      20050900
    M make:      single threaded, Unicode, 64 bit, optimized
    M pid        6396
    M

    M Thu Jan 22 15:12:50 2009
    M  kernel runs with dp version 241000(ext=110000) (@(#) DPLIB-INT-VERSION-241000-UC)
    M  length of sys_adm_ext is 576 bytes
    M  ***LOG Q01=> ThInit, WPStart (Workproc 0 1 6396) [thxxhead.c   1290]
    M  ThInit: running on host USALSAPU
    M  calling db_connect ...
    C  DB4 SQL Reparse Activated

    C Thu Jan 22 15:12:51 2009
    C  R3INLPGM: RmtExeLib from /usr/sap/Q60/SYS/exe/run/DBSLDB4RMT
    C  R3INLPGM: RmtExeLib is KRNQ60700
    C  DBSLENCWT: rc=0, msg=CPF9897 CONCURRENT WRITE IS ENABLED.                                   
    C  DbSl/DB codepage check: table or row not found (db_rc=24) - OK.
    C  === Central DB connect successfull! ===
    C  === Connection settings ===
    C  connected               = TRUE
    C  con_hdl                 = 0
    C  db_handle               = 1
    C  dbhost                  = USALSAPU
    C  rdbname                 =                  
    C  dblib                   = R3Q60DATA
    C  r3sysle_changed         = TRUE
    C  query_compl_reval       = O
    C  dbconnecttype           = L
    C  user                    = Q6079    
    C  qaqqinilib              = Default (QUSRSYS)
    C  dbjobname               = WP00     
    C  dbjobuser               = Q6079    
    C  dbjobno                 = 197762
    C  rmtexelib               = KRNQ60700
    C  parallel_alter_tables   = *OFF
    C  ===========================
    C  Found only default query options in QUSRSYS/QAQQINI.
    C  -
    C  -
    DbSl EGO Structure
    C  -
    C     SAPSYSTEMNAME               = Q60
    C     Character encoding          = UNICODE
    C     process class               = dialog process
    C     workprocess id              = 0
    C     local host                  = USALSAPU
    C     dbhost                      = USALSAPU
    C     rdbname                     =                  
    C     dbname                      = Q60USALSAPU
    C     dblib                       = R3Q60DATA
    C     application server          = DVEBMGS79
    C     Connect type                = LOCAL
    C     pid                         = 6396
    C     wpjobname                   = WP00
    C     wpjobuser                   = Q6079
    C     wpjobno                     = 197762
    C     DB2/400 vers. appl. server  = PASE 1
    C     DB2/400 vers. DB server     = V6R1
    C     da_cache_size               = 100
    C     reopen                      = ON
    C     timeout_retry               = 3
    C     ODP threshold               = 800
    C     ODP commit thresh.          = 810
    C     ODP open thresh.            = 850
    C     QAQQINI library             = Default (QUSRSYS)
    C     Alternate QAQQINI library   = Not specified
    C     use_lobs_for_long           = ON
    C     use_lobs_for_short          = OFF
    C     single_execution_threshold  = 2000
    C     single_execution_reuse      = OFF
    C     keep_tmp_SQLpkgs            = OFF
    C     dbsl_trace                  = OFF
    C     allow_cancel                = Try (Unspecified)
    C     nqe_optimize_method         = O - All I/O (compatibility mode)
    C     nte_list_size               = 10
    C     dbsl_alternate_package      = OFF
    C  -
    B  Connection 0 opened (DBSL handle 0)
    B  Wp  Hdl ConName          ConId     ConState     TX  PRM RCT TIM MAX OPT Date     Time   DBHost         
    B  000 000 R/3              000000000 ACTIVE       NO  YES NO  000 255 255 20090122 151250 USALSAPU       
    M  db_connect o.k.
    M  ICT: exclude compression: .zip,.cs,.rar,.arj,.z,.gz,.tar,.lzh,.cab,.hqx,.ace,.jar,.ear,.war,.css,.pdf,.js,.gzip,.uue,.bz2,.iso,.sda,.sar,.gif
    I  MtxInit: 0 0 0
    M  SHM_PRES_BUF               (addr: 0x7000002d0000000, size: 120000000)
    M  SHM_ROLL_AREA          (addr: 0x7000002e0000000, size: 268435456)
    M  SHM_PAGING_AREA          (addr: 0x7000002f0000000, size: 335544320)
    M  SHM_ROLL_ADM               (addr: 0x700000310000000, size: 2672386)
    M  SHM_PAGING_ADM          (addr: 0x700000320000000, size: 820256)
    M  ThCreateNoBuffer          allocated 544152 bytes for 1000 entries at 0x700000330000000
    M  ThCreateNoBuffer          index size: 3000 elems
    M  ThCreateVBAdm          allocated 12176 bytes (50 server) at 0x700000340000000
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation std
    X  <ES> Info: use normal pages (no huge table support available)
    X  ES initialized.
    B  dbntab: NTAB buffers created
    B  dbntab: Buffer FTAB(hash header)  (addr: 0x700000360000088, size: 584)
    B  dbntab: Buffer FTAB(anchor array) (addr: 0x7000003600002d0, size: 1280008)
    B  dbntab: Buffer FTAB(item array)   (addr: 0x700000360138ad8, size: 5120000)
    B  dbntab: Buffer FTAB(data area)    (addr: 0x70000036061aad8, size: 122880000)
    B  dbntab: Buffer IREC(hash header)  (addr: 0x700000370000088, size: 584)
    B  dbntab: Buffer IREC(anchor array) (addr: 0x7000003700002d0, size: 1280008)
    B  dbntab: Buffer IREC(item array)   (addr: 0x700000370138ad8, size: 1280000)
    B  dbntab: Buffer IREC(data area)    (addr: 0x7000003702712d8, size: 15360000)
    B  dbntab: Buffer STAB(hash header)  (addr: 0x700000380000088, size: 584)
    B  dbntab: Buffer STAB(anchor array) (addr: 0x7000003800002d0, size: 1280008)
    B  dbntab: Buffer STAB(item array)   (addr: 0x700000380138ad8, size: 1280000)
    B  dbntab: Buffer STAB(data area)    (addr: 0x7000003802712d8, size: 3072000)
    B  dbntab: Buffer TTAB(hash header)  (addr: 0x700000390000088, size: 2976)
    B  dbntab: Buffer TTAB(anchor array) (addr: 0x700000390000c28, size: 1280008)
    B  dbntab: Buffer TTAB(item array)   (addr: 0x700000390139430, size: 3200000)
    B  dbntab: Buffer TTAB(data area)    (addr: 0x700000390446830, size: 23360000)

    B Thu Jan 22 15:12:52 2009
    B  dbstat: table statistics switched on for 84171 tables
    B  dbstat: TABSTAT buffer created (addr: 0x7000003a0000000, size: 41152488)
    B  db_con_shm_ini:  WP_ID = 0, WP_CNT = 23, CON_ID = -1
    B  dbtbxbuf: Buffer TABL  (addr: 0x7000003b0000100, size: 350000000, end: 0x7000003c4dc9480)
    B  dbtbxbuf: Profile: max_objects = 40000, displace = 1, reorg = 1
    B  dbtbxbuf: request_unit = 2000, sync_reload = 5, inval_reload = 5
    B  dbtbxbuf: protect_shm = 0, force_checks = 0
    B  dbtbxbuf: tsize_retry = 104857600
    B  ***LOG BB0=> buffer TABL       started with length 350000000  bytes [dbtbxbuf#3 @ 16202] [dbtbxbuf1620 2]
    B  dbtbxbuf: Buffer TABLP (addr: 0x7000003d0000100, size: 35840000, end: 0x7000003d222e100)
    B  dbtbxbuf: Profile: max_objects = 2000, displace = 1, reorg = 1
    B  dbtbxbuf: request_unit = 2000, sync_reload = 5, inval_reload = 5
    B  dbtbxbuf: protect_shm = 0, force_checks = 0
    B  dbtbxbuf: tsize_retry = 17590656
    B  ***LOG BB0=> buffer TABLP      started with length 35840000   bytes [dbtbxbuf#3 @ 16202] [dbtbxbuf1620 2]
    B  dbtbxbuf: Reading TBX statistics:
    B  dbtbxbuf: 29 object entries precreated
    B  Layout of EIBUF buffer shared memory:
    B  0: 1 * 4 = 4
    B  1: 1 * 416 = 416
    B  2: 23 * 40 = 920
    B  3: 80021 * 48 = 3841008
    B  4: 40000 * 256 = 10240000
    B  5: 80021 * 8 = 640168
    B  6: 1 * 200 = 200
    B  7: 513 * 8 = 4104
    B  8: 262473 * 256 = 67193088
    B  Tracing = 0, Shm Protection = 0, Force checks = 0, Recovery delay = 500000
    B  dbexpbuf: Buffer EIBUF (addr: 0x7000003f0000108, size: 81920000, end: 0x7000003f4e20108)
    B  ***LOG BB0=> buffer EIBUF      started with length 80000k     bytes [dbexpbuf#2 @ 2342] [dbexpbuf2342 ]
    B  Layout of ESM   buffer shared memory:
    B  0: 1 * 4 = 4
    B  1: 1 * 416 = 416
    B  2: 23 * 40 = 920
    B  3: 4001 * 48 = 192048
    B  4: 2000 * 256 = 512000
    B  5: 4001 * 8 = 32008
    B  6: 1 * 200 = 200
    B  7: 65 * 8 = 520
    B  8: 13500 * 256 = 3456000
    B  Tracing = 0, Shm Protection = 0, Force checks = 0, Recovery delay = 500000
    B  dbexpbuf: Buffer ESM   (addr: 0x700000400000108, size: 4194304, end: 0x700000400400108)
    B  ***LOG BB0=> buffer ESM        started with length 4096k      bytes [dbexpbuf#2 @ 2342] [dbexpbuf2342 ]
    B  Layout of CUA   buffer shared memory:
    B  0: 1 * 4 = 4
    B  1: 1 * 416 = 416
    B  2: 23 * 40 = 920
    B  3: 40009 * 48 = 1920432
    B  4: 20000 * 256 = 5120000
    B  5: 40009 * 8 = 320072
    B  6: 1 * 200 = 200
    B  7: 193 * 8 = 1544
    B  8: 65617 * 512 = 33595904
    B  Tracing = 0, Shm Protection = 0, Force checks = 0, Recovery delay = 500000
    B  dbexpbuf: Buffer CUA   (addr: 0x700000410000108, size: 40960000, end: 0x700000412710108)
    B  ***LOG BB0=> buffer CUA        started with length 40000k     bytes [dbexpbuf#2 @ 2342] [dbexpbuf2342 ]
    B  Layout of OTR   buffer shared memory:
    B  0: 1 * 4 = 4
    B  1: 1 * 416 = 416
    B  2: 23 * 40 = 920
    B  3: 4001 * 48 = 192048
    B  4: 2000 * 256 = 512000
    B  5: 4001 * 8 = 32008
    B  6: 1 * 200 = 200
    B  7: 81 * 8 = 648
    B  8: 13500 * 256 = 3456000
    B  Tracing = 0, Shm Protection = 0, Force checks = 0, Recovery delay = 500000
    B  dbexpbuf: Buffer OTR   (addr: 0x700000420000108, size: 4194304, end: 0x700000420400108)
    B  ***LOG BB0=> buffer OTR        started with length 4096k      bytes [dbexpbuf#2 @ 2342] [dbexpbuf2342 ]
    B  ***LOG BB0=> buffer CALE       started with length 500000     bytes [dbcalbuf#10 @ 2305] [dbcalbuf2305 ]
    B  dbtran INFO (init_connection '<DEFAULT>' [DB400:700.08]):
    B   max_blocking_factor =  20,  max_in_blocking_factor      =  40,
    B   min_blocking_factor =  10,  min_in_blocking_factor      =  10,
    B   prefer_union_all    =   0,  prefer_join                 =   0,
    B   prefer_fix_blocking =   1,  prefer_in_itab_opt          =   1,
    B   convert AVG         =   1,  alias table FUPD            =   1,
    B   escape_as_literal   =   0,  opt GE LE to BETWEEN        =   0,
    B   select *            =0x00,  character encoding          = STD / <none>:-,
    B   use_hints           = abap->1, dbif->0x3, upto->2147483647, rule_in->0,
    B                         rule_fae->0, concat_fae->0, concat_fae_or->0

    M Thu Jan 22 15:12:53 2009
    M  SecAudit(RsauInit): Start init of Security Audit Log for first wp.
    M  SecAudit(RsauCreateShm): New block for Security Audit Log allocated in SCSA
    M  SecAudit(RsauCreateShm): SCSA memory usage: SecAudit = 1152, total = 3048
    M  SecAudit(RsauShmInit): SCSA size................ = 4096
    M  SecAudit(RsauShmInit): addr of SCSA............. = 0x700000040000000
    M  SecAudit(RsauShmInit): addr of RSAUSHM.......... = 0x700000040000768
    M  SecAudit(RsauShmInit): addr of RSAUSLOTINFO..... = 0x7000000400007a0
    M  SecAudit(RsauShmInit): addr of RSAUSLOTS........ = 0x7000000400007ac
    M  SecAudit(RsauShmInit): SHM version.............. = 5
    M  SecAudit(RsauShmInit): SHM Slot version......... = 2
    M  SecAudit(RsauShmInit): RSAU active.............. = 0
    M  SecAudit(RsauShmInit): number of slots possible. = 10
    M  SecAudit(RsauShmInit): number of slots requested = 2
    M  SecAudit(RsauShmInit): number of slots used..... = 2
    M  SecAudit(RsauShmInit): user selection........... = 0
    M  SecAudit(RsauShmInit): max size of one file..... = 0 KB
    M  SecAudit(RsauShmInit): max size of all files.... = 102400 KB
    M  SecAudit(RsauGetCurrentProfile): Init of shared memory completed
    M  SecAudit(RsauGetCurrentProfile): Security Audit Log not active
    M  SsfSapSecin: automatic application server initialization for SAPSECULIB
    N  SsfSapSecin: Looking for PSE in database
    N  SsfPseLoad: started...(path=/usr/sap/Q60/DVEBMGS79/sec, AS=USALSAPU, instanceid=79)
    N  SsfPseLoad: Downloading file /usr/sap/Q60/DVEBMGS79/sec/SAPSYS.pse (client:    , key: SYSPSE, len: 1872)
    N  SsfPseLoad: ended (1 of 1 sucessfully loaded, 1 checked...
    N  MskiCreateLogonTicketCache: Logon Ticket cache created in shared memory.
    N  MskiCreateLogonTicketCache: Logon Ticket cache pointer registered in shared memory.
    M  CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    M  CCMS: AlMsUpload called by wp 0.
    M  CCMS: AlMsUpload successful for /usr/sap/Q60/DVEBMGS79/log/ALMTTREE (0 MTEs).
    M  CCMS: start to initalize 3.X shared alert area (first segment).

    S Thu Jan 22 15:12:54 2009
    S  *** init spool environment
    S  initialize debug system
    T  Stack direction is downwards.
    T  debug control: prepare exclude for printer trace
    T  new memory block 0x18499b440
    S  spool kernel/ddic check: Ok
    S  using table TSP02FX for frontend printing
    S  2 spool work process(es) found
    S  frontend print via spool service enabled
    S  printer list size is 400
    S  printer type list size is 50
    S  queue size (profile)   = 300
    S  hostspool list size = 3000
    S  option list size is 30
    S      found processing queue enabled
    S  found spool memory service RSPO-RCLOCKS at 0x700000460000070
    S  doing lock recovery
    S  setting server cache root
    S  found spool memory service RSPO-SERVERCACHE at 0x700000460000740
    S    using messages for server info
    S  size of spec char cache entry: 297032 bytes (timeout 100 sec)
    S  size of open spool request entry: 2272 bytes
    S  immediate print option for implicitely closed spool requests is disabled

    A  -PXA--
    A  PXA INITIALIZATION

    A Thu Jan 22 15:12:55 2009
    A  PXA: Locked PXA-Semaphore.
    A  System page size: 4kb, total admin_size: 139532kb, dir_size: 34808kb.
    A  Attached to PXA (address 0x700000470000000, size 1998848K, 4 fragments of 464832K )
    A  abap/pxa = shared unprotect gen_remote
    A  PXA INITIALIZATION FINISHED
    A  -PXA--

    A  ABAP ShmAdm attached (addr=0x7000000b0577000 leng=20955136 end=0x7000000b1973000)
    A  >> Shm MMADM area (addr=0x7000000b0a50fa8 leng=244096 end=0x7000000b0a8c928)
    A  >> Shm MMDAT area (addr=0x7000000b0a8d000 leng=15622144 end=0x7000000b1973000)
    A  RFC Destination> destination USALSAPU_Q60_79 host USALSAPU system Q60 systnr 79 (USALSAPU_Q60_79)
    A  RFC Options> H=USALSAPU,S=79,d=2,
    A  RFC FRFC> fallback activ but this is not a central instance.
    A   
    A  RFC rfc/signon_error_log = -1
    A  RFC rfc/dump_connection_info = 0
    A  RFC rfc/dump_client_info = 0
    A  RFC rfc/cp_convert/ignore_error = 1
    A  RFC rfc/cp_convert/conversion_char = 23
    A  RFC rfc/wan_compress/threshold = 251
    A  RFC rfc/recorder_pcs not set, use defaule value: 2
    A  RFC rfc/delta_trc_level not set, use default value: 0
    A  RFC rfc/no_uuid_check not set, use default value: 0
    A  RFC rfc/bc_ignore_thcmaccp_retcode not set, use default value: 0
    A  RFC Method> initialize RemObjDriver for ABAP Objects
    M  ThrCreateShObjects          allocated 47822 bytes at 0x7000004f0000000

    N Thu Jan 22 15:12:56 2009
    N  SsfSapSecin: PSE /usr/sap/Q60/DVEBMGS79/sec/SAPSYS.pse found!

    N  =================================================
    N  === SSF INITIALIZATION:
    N  ===...SSF Security Toolkit name SAPSECULIB .
    N  ===...SSF trace level is 0 .
    N  ===...SSF library is /usr/sap/Q60/SYS/exe/run/libsapsecu.o .
    N  ===...SSF hash algorithm is SHA1 .
    N  ===...SSF symmetric encryption algorithm is DES-CBC .
    N  ===...completed with return code 5.
    N  =================================================
    N  MskiInitLogonTicketCacheHandle: Logon Ticket cache pointer retrieved from shared memory.
    N  MskiInitLogonTicketCacheHandle: Workprocess runs with Logon Ticket cache.
    M  JrfcVmcRegisterNativesDriver o.k.
    W  =================================================
    W  === ipl_Init() called
    W    ITS Plugin: Path dw_gui
    W    ITS Plugin: Description ITS Plugin - ITS rendering DLL
    W    ITS Plugin: sizeof(SAP_UC) 2
    W    ITS Plugin: Release: 700, [7000.0.172.20050900]
    W    ITS Plugin: Int.version, [33]
    W    ITS Plugin: Feature set: [17]
    W    ===... Calling itsp_Init in external dll ===>
    W  === ipl_Init() returns 0, ITSPE_OK: OK
    W  =================================================
    N  VSI: WP init in ABAP VM completed with rc=0

    E Thu Jan 22 15:12:58 2009
    E  Replication is disabled
    E  EnqCcInitialize: local lock table initialization o.k.
    E  EnqId_SuppressIpc: local EnqId initialization o.k.
    E  EnqCcInitialize: local enqueue client init o.k.

    M Thu Jan 22 15:13:03 2009
    M  SosICreateNewAnchorArray: sos_search_anchor_semantics = 1

    A Thu Jan 22 15:13:07 2009
    A  *** ERROR => RFC ======> cannot open SAPGUI
    [abrfcio.c    8185]
    A  RFC 1729  CONVID 62379446
    A   * CMRC=0 DATA=0 STATUS=0 SAPRC=0 exec_sapgui cannot open SAPGUI
    A  RFC> ABAP Programm: SAPLSLDAG (Transaction: )
    A  RFC> User: DDIC (Client: 000)
    A  RFC> Destination: SERVER_EXEC (handle: 2, , )
    A  RFC SERVER> RFC Server Session (handle: 1, 62377117, {4978D392-D34E-190F-E100-80020A001114})
    A  RFC SERVER> Caller host:
    A  RFC SERVER> Caller transaction code:  (Caller Program: SLDAPPL_SERV)
    A  RFC SERVER> Called function module: SLDAG_GET_COMPILED_BITS
    A  *** ERROR => RFC Error RFCIO_ERROR_SYSERROR in abrfcpic.c : 1738
    FUNCTION: 'exec_sapgui'
    cannot open SAPGUI
    PROG =rfcexec USALSAPU sapgw79 62379446 IDX=2
    [abrfcio.c    8185]
    A  *** ERROR => RFC ======> FUNCTION: 'exec_sapgui'
    cannot open SAPGUI
    [abrfcio.c    8185]
    A  RFC 1729  CONVID 62382527
    A   * CMRC=0 DATA=0 STATUS=0 SAPRC=0 exec_sapgui FUNCTION: 'exec_sapgui'
    A  cannot open SAPGUI
    A  RFC> ABAP Programm: SAPLSLDAG (Transaction: )
    A  RFC> User: DDIC (Client: 000)
    A  RFC> Destination: SERVER_EXEC (handle: 2, , )
    A  RFC SERVER> RFC Server Session (handle: 1, 62381506, {4978D397-D34E-190F-E100-80020A001114})
    A  RFC SERVER> Caller host:
    A  RFC SERVER> Caller transaction code:  (Caller Program: SLDAPPL_SERV)
    A  RFC SERVER> Called function module: SLDAG_GET_COMPILED_BITS
    A  *** ERROR => RFC Error RFCIO_ERROR_SYSERROR in abrfcpic.c : 1738
    FUNCTION: 'exec_sapgui'
    FUNCTION: 'exec_sapgui'
    cannot open SAPGUI
    PROG =rfcexec USALSAPU sapgw79 62382527 IDX=3
    [abrfcio.c    8185]

    A Thu Jan 22 15:13:14 2009
    A  *** ERROR => RFC ======> FUNCTION: 'exec_sapgui'
    FUNCTION: 'exec_sapgui'
    cannot open SAPGUI
    [abrfcio.c    8185]
    A  RFC 1729  CONVID 62392457
    A   * CMRC=0 DATA=0 STATUS=0 SAPRC=0 exec_sapgui FUNCTION: 'exec_sapgui'
    A  FUNCTION: 'exec_sapgui'
    A  cannot open SAPGUI
    A  RFC> ABAP Programm: SAPLSLDAG (Transaction: )
    A  RFC> User: DDIC (Client: 000)
    A  RFC> Destination: SERVER_EXEC (handle: 3, , )
    A  RFC SERVER> RFC Server Session (handle: 1, 62381506, {4978D397-D34E-190F-E100-80020A001114})
    A  RFC SERVER> Caller host:
    A  RFC SERVER> Caller transaction code:  (Caller Program: SLDAPPL_SERV)
    A  RFC SERVER> Called function module: SLDAG_GET_COMPILED_BITS
    A  *** ERROR => RFC Error RFCIO_ERROR_SYSERROR in abrfcpic.c : 1738
    FUNCTION: 'exec_sapgui'
    FUNCTION: 'exec_sapgui'
    FUNCTION: 'exec_sapgui'
    cannot open SAPGUI
    PROG =rfcexec USALSAPU sapgw79 62392457 IDX=6
    [abrfcio.c    8185]

    B Thu Jan 22 15:13:16 2009
    B  table logging switched on for client '010'

    M Thu Jan 22 15:13:22 2009
    M  AS400_API connected to 'USALSAPU'. DBJob: (197789/QUSER     /QXDARECVR )M  *** ERROR => AS400_API (APICODE 23) failed with SY-SUBRC = 9 [abas4api.c   1548]
    M  *** ERROR => Cannot open file '/usr/sap/transD60/config/infoapar.610' [             0]
    A  A  TH VERBOSE LEVEL FULL
    A  ** RABAX: level LEV_RX_PXA_RELEASE_MTX entered.
    A  ** RABAX: level LEV_RX_PXA_RELEASE_MTX completed.
    A  ** RABAX: level LEV_RX_COVERAGE_ANALYSER entered.
    A  ** RABAX: level LEV_RX_COVERAGE_ANALYSER completed.
    A  ** RABAX: level LEV_RX_ROLLBACK entered.
    A  ** RABAX: level LEV_RX_ROLLBACK completed.
    A  ** RABAX: level LEV_RX_DB_ALIVE entered.
    A  ** RABAX: level LEV_RX_DB_ALIVE completed.
    A  ** RABAX: level LEV_RX_HOOKS entered.
    A  ** RABAX: level LEV_RX_HOOKS completed.
    A  ** RABAX: level LEV_RX_STANDARD entered.
    A  ** RABAX: level LEV_RX_STANDARD completed.
    A  ** RABAX: level LEV_RX_STOR_VALUES entered.
    A  ** RABAX: level LEV_RX_STOR_VALUES completed.
    A  ** RABAX: level LEV_RX_C_STACK entered.
    A  ** RABAX: level LEV_RX_C_STACK completed.
    A  ** RABAX: level LEV_RX_MEMO_CHECK entered.
    A  ** RABAX: level LEV_RX_MEMO_CHECK completed.
    A  ** RABAX: level LEV_RX_AFTER_MEMO_CHECK entered.
    A  ** RABAX: level LEV_RX_AFTER_MEMO_CHECK completed.
    A  ** RABAX: level LEV_RX_INTERFACES entered.
    A  ** RABAX: level LEV_RX_INTERFACES completed.
    A  ** RABAX: level LEV_RX_GET_MESS entered.
    A  ** RABAX: level LEV_RX_GET_MESS completed.
    A  ** RABAX: level LEV_RX_INIT_SNAP entered.
    A  ** RABAX: level LEV_RX_INIT_SNAP completed.
    A  ** RABAX: level LEV_RX_WRITE_SYSLOG entered.
    A  ** RABAX: level LEV_RX_WRITE_SYSLOG completed.
    A  ** RABAX: level LEV_RX_WRITE_SNAP entered.
    A  ** RABAX: level LEV_SN_END completed.
    A  ** RABAX: level LEV_RX_SET_ALERT entered.
    A  ** RABAX: level LEV_RX_SET_ALERT completed.
    A  ** RABAX: level LEV_RX_COMMIT entered.
    A  ** RABAX: level LEV_RX_COMMIT completed.
    A  ** RABAX: level LEV_RX_SNAP_SYSLOG entered.
    A  ** RABAX: level LEV_RX_SNAP_SYSLOG completed.
    A  ** RABAX: level LEV_RX_RESET_PROGS entered.
    A  ** RABAX: level LEV_RX_RESET_PROGS completed.
    A  ** RABAX: level LEV_RX_STDERR entered.
    A  Thu Jan 22 15:13:22 2009

    A  ABAP Program SAPMSYST                                .
    A  Source SAPMSYST                                 Line 1770.
    A  Error Code DYNPRO_NOT_FOUND.
    A  Module  $Id: //bas/700_REL/src/krn/dynp/dybas.c#6 $ SAP.
    A  Function dyrdyp.c Line 545.
    A  ** RABAX: level LEV_RX_STDERR completed.
    A  ** RABAX: level LEV_RX_RFC_ERROR entered.
    A  ** RABAX: level LEV_RX_RFC_ERROR completed.
    A  ** RABAX: level LEV_RX_RFC_CLOSE entered.
    A  ** RABAX: level LEV_RX_RFC_CLOSE completed.
    A  ** RABAX: level LEV_RX_IMC_ERROR entered.
    A  ** RABAX: level LEV_RX_IMC_ERROR completed.
    A  ** RABAX: level LEV_RX_DATASET_CLOSE entered.
    A  ** RABAX: level LEV_RX_DATASET_CLOSE completed.
    A  ** RABAX: level LEV_RX_RESET_SHMLOCKS entered.
    A  ** RABAX: level LEV_RX_RESET_SHMLOCKS completed.
    A  ** RABAX: level LEV_RX_ERROR_SAVE entered.
    A  ** RABAX: level LEV_RX_ERROR_SAVE completed.
    A  ** RABAX: level LEV_RX_ERROR_TPDA entered.
    A  ** RABAX: level LEV_RX_ERROR_TPDA completed.
    A  ** RABAX: level LEV_RX_PXA_RELEASE_RUDI entered.
    A  ** RABAX: level LEV_RX_PXA_RELEASE_RUDI completed.
    A  ** RABAX: level LEV_RX_LIVE_CACHE_CLEANUP entered.
    A  ** RABAX: level LEV_RX_LIVE_CACHE_CLEANUP completed.
    A  ** RABAX: level LEV_RX_END entered.
    A  ** RABAX: level LEV_RX_END completed.
    A  ** RABAX: end no http/smtp
    A  ** RABAX: end RX_GOTO_RABAX
    A  Dynpro does not exist.

    A  TH VERBOSE LEVEL FULL
    A  ** RABAX: level LEV_RX_PXA_RELEASE_MTX entered.
    A  ** RABAX: level LEV_RX_PXA_RELEASE_MTX completed.
    A  ** RABAX: level LEV_RX_COVERAGE_ANALYSER entered.
    A  ** RABAX: level LEV_RX_COVERAGE_ANALYSER completed.
    A  ** RABAX: level LEV_RX_ROLLBACK entered.
    A  ** RABAX: level LEV_RX_ROLLBACK completed.
    A  ** RABAX: level LEV_RX_DB_ALIVE entered.
    A  ** RABAX: level LEV_RX_DB_ALIVE completed.
    A  ** RABAX: level LEV_RX_HOOKS entered.
    A  ** RABAX: level LEV_RX_HOOKS completed.
    A  ** RABAX: level LEV_RX_STANDARD entered.
    A  ** RABAX: level LEV_RX_STANDARD completed.
    A  ** RABAX: level LEV_RX_STOR_VALUES entered.
    A  ** RABAX: level LEV_RX_STOR_VALUES completed.
    A  ** RABAX: level LEV_RX_C_STACK entered.

    A Thu Jan 22 15:13:23 2009
    A  ** RABAX: level LEV_RX_C_STACK completed.
    A  ** RABAX: level LEV_RX_MEMO_CHECK entered.
    A  ** RABAX: level LEV_RX_MEMO_CHECK completed.
    A  ** RABAX: level LEV_RX_AFTER_MEMO_CHECK entered.
    A  ** RABAX: level LEV_RX_AFTER_MEMO_CHECK completed.
    A  ** RABAX: level LEV_RX_INTERFACES entered.
    A  ** RABAX: level LEV_RX_INTERFACES completed.
    A  ** RABAX: level LEV_RX_GET_MESS entered.
    A  ** RABAX: level LEV_RX_GET_MESS completed.
    A  ** RABAX: level LEV_RX_INIT_SNAP entered.
    A  ** RABAX: level LEV_RX_INIT_SNAP completed.
    A  ** RABAX: level LEV_RX_WRITE_SYSLOG entered.
    A  ** RABAX: level LEV_RX_WRITE_SYSLOG completed.
    A  ** RABAX: level LEV_RX_WRITE_SNAP entered.
    A  ** RABAX: level LEV_SN_END completed.
    A  ** RABAX: level LEV_RX_SET_ALERT entered.
    A  ** RABAX: level LEV_RX_SET_ALERT completed.
    A  ** RABAX: level LEV_RX_COMMIT entered.
    A  ** RABAX: level LEV_RX_COMMIT completed.
    A  ** RABAX: level LEV_RX_SNAP_SYSLOG entered.
    A  ** RABAX: level LEV_RX_SNAP_SYSLOG completed.
    A  ** RABAX: level LEV_RX_RESET_PROGS entered.
    A  ** RABAX: level LEV_RX_RESET_PROGS completed.
    A  ** RABAX: level LEV_RX_STDERR entered.
    A  Thu Jan 22 15:13:23 2009

    A  ABAP Program SAPMS380                                .
    A  Source                                          Line 0.
    A  Error Code DYNPRO_NOT_FOUND.
    A  Module  $Id: //bas/700_REL/src/krn/dynp/dybas.c#6 $ SAP.
    A  Function dyrdyp.c Line 545.
    A  ** RABAX: level LEV_RX_STDERR completed.
    A  ** RABAX: level LEV_RX_RFC_ERROR entered.
    A  ** RABAX: level LEV_RX_RFC_ERROR completed.
    A  ** RABAX: level LEV_RX_RFC_CLOSE entered.
    A  ** RABAX: level LEV_RX_RFC_CLOSE completed.
    A  ** RABAX: level LEV_RX_IMC_ERROR entered.
    A  ** RABAX: level LEV_RX_IMC_ERROR completed.
    A  ** RABAX: level LEV_RX_DATASET_CLOSE entered.
    A  ** RABAX: level LEV_RX_DATASET_CLOSE completed.
    A  ** RABAX: level LEV_RX_RESET_SHMLOCKS entered.
    A  ** RABAX: level LEV_RX_RESET_SHMLOCKS completed.
    A  ** RABAX: level LEV_RX_ERROR_SAVE entered.
    A  ** RABAX: level LEV_RX_ERROR_SAVE completed.
    A  ** RABAX: level LEV_RX_ERROR_TPDA entered.
    A  ** RABAX: level LEV_RX_ERROR_TPDA completed.
    A  ** RABAX: level LEV_RX_PXA_RELEASE_RUDI entered.
    A  ** RABAX: level LEV_RX_PXA_RELEASE_RUDI completed.
    A  ** RABAX: level LEV_RX_LIVE_CACHE_CLEANUP entered.
    A  ** RABAX: level LEV_RX_LIVE_CACHE_CLEANUP completed.
    A  ** RABAX: level LEV_RX_END entered.
    A  ** RABAX: level LEV_RX_END completed.
    A  ** RABAX: end no http/smtp
    A  ** RABAX: end RX_GOTO_SAPDEXT
    A  Dynpro does not exist.

    M  ThIUsrDel: th_rollback_usrdelentry = 1
    M  ***LOG R47=> ThResFree, delete (001024) [thxxmode.c   1384]

    S Thu Jan 22 15:14:20 2009
    S  found spool memory service RSPO-ACTIONS at 0x70000046000a478

    Hi TJ,
    you are having definetely other issues, than the ones that might be caused by clrpfm of the tables above ...
    But, based on that data, I do not know which ones ;-(
    There are dynpro tables like dynpload or d3456t or so not proper ...
    Regards
    Volker Gueldenpfennig, consolut international ag
    http://www.consolut.net - http://www.4soi.de - http://www.easymarketplace.de

  • How to change the default code page in SAP?

    My colleague tries to download a report in Excel but she is having some problems with the output as each of the lines are all included in one cell. When I download the same report, my output is fine and the columns in the lines are properly aligned in various columns in Excel.
    I noticed that her code page is 4110 and mine is 1160.
    4110     Unicode UTF-8
    1160     Microsoft 1252, Superset of ISO 8859-1
    As a workaround, I just asked her to modify the code page to 1160 everytime she downloads a report. I want to know how this setting is derived.
    My questions are:
    1) Is there a way to set the default code page?
    2) Is this a problem with the SAP version? If she downloads another SAP GUI, will the issue be gone?
    Thanks!
    Joey

    1, You can change the codepage in SAPGUI: Select the system => Properties => Others
    2, Could be, best is to have the same and most up to date SAPGUI for all

  • How To Display Minus value in SAP SCript

    Hello Guys.
    I am working on a Script. My Problem is that For a fields BSAD-DMBTR.
    I have to show this fields value as minus or plus as per condition with fields
    <b>bsad-shkzg</b>. In my Internal table it's update as minus but when  I am calling  Write form with loop.  the value is not display with minus sign.
    How can I display value with minus sign in SAP script.
    Regards
    Swati,,

    Hello Guys..
    Thanks for Reply. But I am doing that thing already. My Internal table is updated with minus value. My Problem is not That.
    let's suppose.
    itab-name  =  'xyz'.
    itab-value   =   100.
    append itab.
    itab-name  =  'xyz1'.
    itab-value   =   -1 * 100.
    append itab.
    loop at itab.
    CALL FUNCTION 'WRITE_FORM'
        EXPORTING
            element                  = 'LINE'
            function                 = 'SET'
            type                     = 'BODY'
            window                   = 'MAIN'
          EXCEPTIONS
            element                  = 1
            function                 = 2
            type                     = 3
            unopened                 = 4
            unstarted                = 5
            window                   = 6
            bad_pageformat_for_print = 7
            spool_error              = 8
            codepage                 = 9
            OTHERS                   = 10.
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
    endloop.
    Now when value is printed in SAP Script both value is display as plus .I want to display secound value as minus.
    Please reply it's urgent.
    Thanks
    Swati....

  • How to change a Code Page in SAP SCRIPT ?

    I have a specific requirement, would need your help :
    There is a <u><b>CODE PAGE</b></u> which is getting assigned to the <u><b>SAP SCRIPT FORM</b></u>. <i><b>For E.g : 1100 is generally used for SAP SCRIPTS.</b></i>
    I would like to know if there is a possibility to change the <u><b>Code Page</b></u> based on certain conditions ??
    Also i would like to know how and where is a <u><b>CODE PAGE and SAP SCRIPT FORM linked.</b></u>
    I have analysed that a <b>default code page</b> can be set in the <b>SAP LOG ON PAD</b> but not able to find the issues mentioned above.
    Kindly help me out with your valuable suggestions and solutions.
    Thankyou
    Brijesh.

    Hi,
    MDMP means Multi Display Multi Processing. See the note system for details. The problem of MDMP is that the different languages use different codepages and not all characteres can be displayed in every codepage.
    A solution would be a unicode conversion of the system. In unicode there is only one internal codepage, which contains all special characters of the individual languages. However the migration needs several hours of down time and unicode systems need more memory and disk space. I can't tell you a percentage for that. You need at least R/3 4.7 for unicode.
    In non-unicode system I believe you can't change the codepage inside a SAPscript document directly. I would have to end form processing an start a new form. To change the language you can try the ABAP-command SET LOCALE. Also see the language parameter in START_FORM.
    If that doesn't work I would try using RFC-Connections. Make RFC-Connections in your system which contain the system it self as target system, but with the desired language filled in. You do not need to provide a user or password, that would be taken form the logged on user.
    Inside your printing program you put the real printing into a function module. Your report then can call the function via RFC using a connection in the correct logon language.
    Greetings

Maybe you are looking for

  • Can i get a bigger Hard drive in my Macbook? :)

    Hey everybody, a few questions for your guys. Thanks Can i get a larger hard drive in my macbook whats the largest size Does it void the warranty were can you buy them from and is it easy install Thanks guys

  • Oracle  database for Fedora Core 7 (x86_64)

    I want to install Oracle database on Fedora core 7(x86_64). I tried with 10201_database_linux_x86_64.cpio.gz setup but it does not support Fedora core 7 platform. Please suggest me where to find the proper setup. Thanks in advance

  • How to add Airport Express and USB 2?

    Hello all, I have a Titanium 1ghz that currently has no Airport. I'd like to add Airport Express and USB 2. I know I can do both via the PCMCIA slot, but only one at a time. (Before you say: Just add USB 2 via the slot, and then add a WiFi dongle via

  • Re:Reminder Pop-Ups for Recovery

    Re:Reminder Pop-Ups for Recovery This question was solved. View Solution.

  • Any way to capture a webstream?

    I've been asked to edit a web seminar, and the only way that it seems to exist as a sound file is via some kind of web stream. I'm looking for a way to take the sound and feed it into Logic. Does anyone know how to feed the 'outputs' of Safari into L