ST22: OBJECTS_OBJREF_NOT_ASSIGNED

Hi SDN, can somebody give me a clue about this ST22 dump:
Coding OnInputProcessing:
DATA: event TYPE REF TO cl_htmlb_event.
DATA: data_t TYPE REF TO cl_htmlb_inputfield.
event = cl_htmlb_manager=>get_event( runtime->server->request ).
IF event->id = 'BZUR' AND event->event_type = 'click'.
Coding im Layout:
      <htmlb:form method="post" >
        <htmlb:button id      = "BZUR"
                      onClick = "clicked"
                      text    = "zurück"></htmlb:button>
I thought this is the way to make things work safely - still sometimes I get this short dump:
     1 method _ONINPUTPROCESSING.                                        
     2 * event handler for checking and processing user input and        
     3 * for defining navigation                                         
     4                                                                   
     5 DATA: event TYPE REF TO cl_htmlb_event.                           
     6 DATA: data_t TYPE REF TO cl_htmlb_inputfield.                     
     7                                                                   
     8 event = cl_htmlb_manager=>get_event( runtime->server->request ).  
     9                                                                   
>>>>> IF event->id = 'BZUR' AND event->event_type = 'click'.            
    11                                                                   
    12 * HOOK_URL ist befüllt und muss nicht erst neu geholt werden      
    13   data_t ?= cl_htmlb_manager=>get_data(                           
    14                               request = runtime->server->request  
    15                               name     = 'inputField'             
    16                               id       = 'I01'                    
    17                               ).                                  
    18   IF NOT data_t IS INITIAL.                                       
    19     hook_url = data_t->value.                                     
    20   ENDIF.                                                          
    21                                                                   
    22   navigation->set_parameter( name = 'HOOK_URL' value = hook_url ).
    23   navigation->goto_page( url = 'start.htm' ).                     
    24 ENDIF.                                                            
The dump does not occur regularly only seldom randomly.
regards, matthias
ps: this is WAS 700
SAP_ABA      700     0010     SAPKA70010
SAP_BASI 700     0010     SAPKB70010
pps: I did some more testing and noticed taht this dump occurs when hitting the submit Button, which is not htmlb but mere html with some css formats:
<input type="submit" name="onInputProcessing(go)"
                       value="an EVI senden" style="border: solid 1px black;
                       background-color: #C1D3E0; color: #000000; font-size: 11px;">
Message was edited by:
        Matthias Kasig
Message was edited by:
        Matthias Kasig

Hi Matthias,
I guess as in your case the form is not submitted by the respective JavaScript libraries of HTMLB that some hidden inputfields that contain more information about the type of the event are not filled and therefor the event-manager cannot create the event. To circumvent the dump you can just check whether the event is bound.
if event is bound and .....
In case the event is not bound (could not been instantiated) the rest of the if-clause will not be checked.
The better option from my point of view is to proceed as follows:
Use the bsp-tag htmlbEvent on the layout to get the javascript for executing an event generated:
<bsp:htmlbEvent  event_code = "<%=lv_event%>"
                 event_type = "MyEventType"
                 id         = "SubmitMyEvent"
                 name       = "SubmitMyEvent"/>
If you place this within your layout the variable lv_event contains the javascript that is required to trigger the event. If you put this coding into you Button as onClick:
<input type="BUTTON" value="Submit" onClick="<%=lv_event%>">
Then you should be able to handle the event in the onInputprocessing by:
DATA: event TYPE REF TO IF_HTMLB_DATA.
event = cl_htmlb_manager=>get_event_ex( runtime->server->request ).
Now you can find your Id's in the attributes of the interface reference. In case you use standard htmlb-elements to trigger the form submit (e.g. checkbox or dropdown) you can use the following to distinguish what element has fired the event:
CASE event->event_name.
  WHEN htmlb_events=>checkbox.
  "Checkbox was clicked
  WHEN .......
  "Some other events
ENDCASE.
The constants for the htlmb-events are available in class htmlb_events, the ones for phtmlb in phtmlb_events and the ones for xhtmlb in xhtmlb_events.
Hope that helps.
Best Regards
Michael

Similar Messages

  • OBJECTS_OBJREF_NOT_ASSIGNED  error while executing ABAP proxy

    Hi ,
    I am getting the following error when i try to execute an abap proxy .
    Unit ID in Background RFC     001EC9D184F702ECAA8DBC7401DC13E0
    Name of First Function Module     SRT_SEQ_SCD_DLV_TRM_QRFC_NEW_C
    Inbound Destination Name     WS_SERVICE_02DCA4961A0B_IN
    Transaction Code                     SE38
    Name of qRFC Queue                     SRTQC_001EC9D184F702ECAA8DBC6FE29753DB
    Created On                     28.01.2009
    No. of Predecessors                   1
    Created At                                    12:44:10
    Executed At                     12:44:13
    Created At (Time Stamp)     20.090.128.114.410,9989340
    User name                                     DEVELOPER
    Tcode/program                      CL_SOAP_SCHEDULER_QRFC_NEW====CP
    ID of Lock in Background RFC     001EC9D184F702DCAA8DBCA25EC41F5E
    Lock Reason                     System error; not executed
    Background RFC Scheduler ID              1
    Message number                       341
    Language Key                            EN
    Status Text                               Unit has execution errors
    Execution State                             Access using a 'ZERO' object reference is not possible.
    Number of Called Function Modules     1
    Number of Locks                                    1
    Commit Check Disabled               X
    Message Class                                  0
    Message Variable                             OBJECTS_OBJREF_NOT_ASSIGNED
    Executed On                             28.01.2009
    and in ST22 transaction i am getting the following dump
    Runtime Errors  : OBJECTS_OBJREF_NOT_ASSIGNED
    Exception         :CX_SY_RF_IS_INITIAL
    Error analysis
        An exception occurred that is explained in detail below.
        The exception, which is assigned to class 'CX_SY_REF_IS_INITIAL', was not
         caught in
        procedure "WSRM_CLONE_FOR_SPECIFIC_OPS" "(METHOD)", nor was it propagated by a
         RAISING clause.
        Since the caller of the procedure could not have anticipated that the
        exception would occur, the current program is terminated.
        The reason for the exception is:
        An attempt was made to access a component (variable: "ME->M_CTX") with a 'ZERO'
        object reference (points to 'nothing').
        An object reference must point to an object (an instance of a class)
        before it can be used to access a component.
        Either the reference has not yet been set or it was set to 'ZERO' using
        a CLEAR statement.
    Please help in solving this issue.
    Thanks&Regards,
    Hamsa Shree

    Hi
    Runtime Errors : OBJECTS_OBJREF_NOT_ASSIGNED
    Check with the SAP Notes Note
    557770 - SAP BP: Short dump OBJECTS_OBJREF_NOT_ASSIGNED
    may be you get the exact help
    Regards
    Abhishek

  • OBJECTS_OBJREF_NOT_ASSIGNED

    Hello,
    Pls i want immediate reply.. i got this error.. i will give full points...ps help me
    Runtime Errors         OBJECTS_OBJREF_NOT_ASSIGNED
    Exception              CX_SY_REF_IS_INITIAL
    Date and Time          02.08.2008 13:31:48
    Short text
    Access via 'NULL' object reference not possible.
    What happened?
    Error in the ABAP Application Program
    The current ABAP program "ZNARI_CLASS" had to be terminated because it has
    come across a statement that unfortunately cannot be executed.
    What can you do?
    Note down which actions and inputs caused the error.
    To process the problem further, contact you SAP system
    administrator.
    Using Transaction ST22 for ABAP Dump Analysis, you can look
    at and manage termination messages, and you can also
    keep them for a long time.
    Error analysis
    An exception occurred that is explained in detail below.
    The exception, which is assigned to class 'CX_SY_REF_IS_INITIAL', was not
    caught and
    therefore caused a runtime error.
    The reason for the exception is:
    You attempted to use a 'NULL' object reference (points to 'nothing')
    access a component (variable: "CAL1").
    An object reference must point to an object (an instance of a class)
    before it can be used to access components.
    Either the reference was never set or it was set to 'NULL' using the
    CLEAR statement.
    How to correct the error
    Probably the only way to eliminate the error is to correct the program.
    If the error occures in a non-modified SAP program, you may be able to
    find an interim solution in an SAP Note.
    If you have access to SAP Notes, carry out a search with the following
    keywords:
    "OBJECTS_OBJREF_NOT_ASSIGNED" "CX_SY_REF_IS_INITIAL"
    "ZNARI_CLASS" or "ZNARI_CLASS"
    "START-OF-SELECTION"
    If you cannot solve the problem yourself and want to send an error
    notification to SAP, include the following information:
    1. The description of the current problem (short dump)
    To save the description, choose "System->List->Save->Local File
    (Unconverted)".
    2. Corresponding system log
    Display the system log by calling transaction SM21.
    Restrict the time interval to 10 minutes before and five minutes
    after the short dump. Then choose "System->List->Save->Local File
    (Unconverted)".
    3. If the problem occurs in a problem of your own or a modified SAP
    program: The source code of the program
    In the editor, choose "Utilities->More
    Utilities->Upload/Download->Download".
    4. Details about the conditions under which the error occurred or which
    actions and input led to the error.
    System environment
    SAP-Release 700
    Application server... "lenita"
    Network address...... "192.168.10.253"
    Operating system..... "Windows NT"
    Release.............. "5.2"
    Hardware type........ "2x Intel 801586"
    Character length.... 16 Bits
    Pointer length....... 32 Bits
    Work process number.. 1
    Shortdump setting.... "full"
    Database server... "LENITA"
    Database type..... "MSSQL"
    Database name..... "PRD"
    Database user ID.. "prd"
    Char.set.... "C"
    SAP kernel....... 700
    created (date)... "Apr 2 2006 23:08:16"
    create on........ "NT 5.0 2195 Service Pack 4 x86 MS VC++ 13.10"
    Database version. "SQL_Server_8.00 "
    Patch level. 52
    Patch text.. " "
    Database............. "MSSQL 7.00.699 or higher, MSSQL 8.00.194"
    SAP database version. 700
    Operating system..... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2"
    Memory consumption
    Roll.... 8176
    EM...... 13587912
    Heap.... 0
    Page.... 204800
    MM Used. 569680
    MM Free. 474136
    User and Transaction
    Client.............. 222
    User................ "ABAPUSER"
    Language key........ "E"
    Transaction......... "SE38 "
    Program............. "ZNARI_CLASS"
    Screen.............. "SAPMSSY0 1000"
    Screen line......... 6
    Information on where terminated
    Termination occurred in the ABAP program "ZNARI_CLASS" - in
    "START-OF-SELECTION".
    The main program was "ZNARI_CLASS ".
    In the source code you have the termination point in line 17
    of the (Include) program "ZNARI_CLASS".
    Source Code Extract
    Line
    SourceCde
    1
    2
    *& Report  ZNARI_CLASS
    3
    4
    5
    6
    7
    8
    9
    REPORT  ZNARI_CLASS.
    10
    11
    12
    13
    DATA : CAL1 TYPE REF TO ZCALLING4.
    14
    15
    START-OF-SELECTION.
    16
    >>>>>
    CALL METHOD CAL1->DISPLAY.
    Contents of system fields
    Name
    Val.
    SY-SUBRC
    0
    SY-INDEX
    0
    SY-TABIX
    1
    SY-DBCNT
    0
    SY-FDPOS
    0
    SY-LSIND
    0
    SY-PAGNO
    0
    SY-LINNO
    1
    SY-COLNO
    1
    SY-PFKEY
    SY-UCOMM
    SY-TITLE
    REPORT TO CALL GLOBAL CLASS.
    SY-MSGTY
    SY-MSGID
    SY-MSGNO
    000
    SY-MSGV1
    SY-MSGV2
    SY-MSGV3
    SY-MSGV4
    SY-MODNO
    0
    SY-DATUM
    20080802
    SY-UZEIT
    133147
    SY-XPROG
    RSDBRUNT
    SY-XFORM
    %_INIT_PBO_FIRST
    Active Calls/Events
    No.   Ty.          Program                             Include                             Line
    Name
    1 EVENT        ZNARI_CLASS                         ZNARI_CLASS                            17
    START-OF-SELECTION
    Chosen variables
    Name
    Val.
    No.       1 Ty.          EVENT
    Name  START-OF-SELECTION
    CAL1
    F0000000
    F0000000
    %_DUMMY$$
    2222
    0000
    0000
    0000
    Internal notes
    The termination was triggered in function "ab_jclom"
    of the SAP kernel, in line 4703 of the module
    "//bas/700_REL/src/krn/runt/abmethod.c#6".
    The internal operation just processed is "clom".
    Internal mode was started at 20080802133147.
    Active Calls in SAP Kernel
    Lines of C Stack in Kernel (Structure Differs on Each Platform)
    SAP (R) - R/3(TM) Callstack, Version 1.0
    Copyright (C) SAP AG. All rights reserved.
    Callstack without Exception:
    App       : disp+work.EXE (pid=2640)
    When      : 8/2/2008 13:31:48.187
    Threads   : 2
    Computer Name       : LENITA
    User Name           : SAPServicePRD
    Number of Processors: 2
    Processor Type: x86 Family 15 Model 3 Stepping 4
    Windows Version     : 5.2 Current Build: 3790
    State Dump for Thread Id b64
    eax=0a400000 ebx=00000340 ecx=00000002 edx=00000058 esi=00000340 edi=00000000
    eip=7c8285ec esp=053fbea0 ebp=053fbf10 iopl=0         nv up ei ng nz ac po cy
    cs=001b  ss=0023  ds=0023  es=0023  fs=003b  gs=0000             efl=00000297
    function : KiFastSystemCallRet
    7c8285ec c3               ret
    7c8285ed 8da42400000000   lea     esp,[esp]              ss:053fbea0=7c827d0b
    7c8285f4 8d642400         lea     esp,[esp]              ss:294aa4b3=????????
    FramePtr ReturnAd Param#1  Param#2  Param#3  Param#4  Function Name
    053fbf10 77e61c8d 00000340 0001d4c0 00000000 053fbf48 ntdll!KiFastSystemCallRet
    053fbf24 0100b3aa 00000340 0001d4c0 00000001 7c38b5c8 kernel32!WaitForSingleObject
    053fbf48 0055b4ac 0055b4e5 7c38b5c8 7c38b5c8 7c38b5c8 disp+work!NTDebugProcess [ntstcdbg.c (501)]
    053fbf4c 0055b4e5 7c38b5c8 7c38b5c8 7c38b5c8 01d35ab0 disp+work!NTStack [dptstack.c (1365)]
    053fbf68 0055b519 7c38b5c8 00000000 008536a8 7c38b5c8 disp+work!CTrcStack2 [dptstack.c (352)]
    053fbf74 008536a8 7c38b5c8 00000000 005f0059 00310030 disp+work!CTrcStack [dptstack.c (182)]
    053fbf98 008569fa 4119dfb8 00000000 00000000 053fc030 disp+work!rabax_CStackSave [abrabax.c (6871)
    053fc070 006cf952 013a80e8 013a80b0 0000125f 1e1fc1c8 disp+work!ab_rabax [abrabax.c (1213)]
    053fd09c 0067bb56 00000008 4119e8f4 00000000 053fd104 disp+work!ab_jclom [abmethod.c (4703)]
    053fd104 007af315 51bd965c 00000000 053fd130 00000000 disp+work!ab_extri [abextri.c (552)]
    053fd118 007af71f 01410030 00000000 0000000c 00000000 disp+work!ab_xevent [abrunt1.c (339)]
    053fd130 008a6581 51bd8150 00000000 0000008e 00000025 disp+work!ab_trigg [abrunt1.c (141)]
    053fd148 00596b3d 51bd8150 51bd965c 00000000 00590053 disp+work!ab_run [absubmit.c (403)]
    053fd270 00598503 00000000 51bd8150 00000000 00000000 disp+work!dynpmcal [dymainstp.c (2273)]
    053fd284 00597b13 00000001 51bd8150 00000003 053ffd04 disp+work!dynppai0 [dymainstp.c (1108)]
    053fd2a0 0056dcf1 51bd8150 00000001 00000000 00000002 disp+work!dynprctl [dymainstp.c (359)]
    053ffd04 00471848 00000013 ffffffff 00000001 00494960 disp+work!dynpen00 [dymain.c (1405)]
    053ffd0c ffffffff 00000001 00494960 00000002 01c72400 disp+work!Thdynpen00 [thxxhead.c (4632)]
    053ffee0 00494ee2 00000001 00000000 00000000 00430000 <nosymbols>
    053fff00 00421150 00000000 00000000 7ffdb000 053fff60 disp+work!ThStart [thxxhead.c (1145)]
    053fff14 00401080 00000003 055569d0 00000001 00000000 disp+work!DpMain [dpxxdisp.c (1113)]
    053fff60 011a94a0 00000003 055569d0 055574a0 01bd5000 disp+work!nlsui_main [thxxanf.c (82)]
    053fffc0 77e6f23b 00000000 00000000 7ffdb000 00000000 disp+work!wmainCRTStartup [crtexe.c (395)]
    053ffff0 00000000 011a935d 00000000 00905a4d 00000003 kernel32!ProcessIdToSessionId
    State Dump for Thread Id cb0
    eax=00000001 ebx=00000103 ecx=7c829f59 edx=00440000 esi=00000000 edi=00000000
    eip=7c8285ec esp=0763fec0 ebp=0763ff04 iopl=0         nv up ei pl zr na po nc
    cs=001b  ss=0023  ds=0023  es=0023  fs=003b  gs=0000             efl=00000246
    function : KiFastSystemCallRet
    7c8285ec c3               ret
    7c8285ed 8da42400000000   lea     esp,[esp]              ss:0763fec0=7c8270fb
    7c8285f4 8d642400         lea     esp,[esp]              ss:2b6ee4d3=????????
    FramePtr ReturnAd Param#1  Param#2  Param#3  Param#4  Function Name
    0763ff04 010f7ffc 000006c0 00000000 00000000 0555fb18 ntdll!KiFastSystemCallRet
    0763ff84 7c349565 00000000 00000000 00000000 0555fa80 disp+work!SigIMsgFunc [signt.c (594)]
    0763ffb8 77e64829 0555fa80 00000000 00000000 0555fa80 MSVCR71!endthreadex
    0763ffec 00000000 7c3494f6 0555fa80 00000000 00000000 kernel32!GetModuleHandleA
    List of ABAP programs affected
    Index
    Typ
    Program
    Group
    Date
    Time
    Size
    Lang.
    0
    Prg
    ZNARI_CLASS
    0
    02.08.2008
    13:31:45
    16384
    E
    1
    Prg
    SAPMSSY0
    1
    02.12.2006
    16:29:39
    90112
    E
    2
    Prg
    SAPMSSYD
    1
    02.12.2006
    16:29:36
    21504
    E
    3
    Prg
    SAPFSYSCALLS
    1
    09.09.2004
    14:18:32
    8192
    E
    4
    Prg
    RSDBRUNT
    0
    02.12.2006
    16:29:28
    251904
    E
    5
    Typ
    RSSCR
    0
    30.03.2005
    10:21:45
    5120
    6
    Prg
    RSDBSPBL
    0
    30.03.2005
    10:21:58
    72704
    E
    7
    Prg
    SAPDB__S
    0
    30.03.2005
    10:22:01
    18432
    E
    8
    Prg
    RSDBSPMC
    0
    02.12.2006
    16:12:36
    78848
    E
    9
    Typ
    DDSHDESCR
    0
    03.09.1997
    03:05:16
    4096
    10
    Typ
    SPPARAMS
    0
    07.05.1997
    13:10:38
    2048
    11
    Typ
    SPPARAMS
    0
    07.05.1997
    13:10:38
    2048
    12
    Prg
    SAPLSABE
    12
    09.09.2004
    14:18:36
    13312
    E
    13
    Prg
    SAPLSECU
    13
    06.02.2007
    17:51:46
    86016
    E
    14
    Typ
    RSSUBINFO
    0
    14.10.1999
    22:01:03
    3072
    15
    Prg
    %_CRSDS
    0
    18.02.2005
    14:15:39
    10240
    E
    16
    Typ
    RSDSEXPR
    0
    20.08.1998
    10:57:18
    3072
    17
    Prg
    SAPFSPOR
    1
    09.09.2004
    14:18:32
    15360
    E
    18
    Prg
    SAPLSCNT
    18
    18.02.2005
    14:16:06
    30720
    E
    19
    Typ
    DYCBOX
    0
    20.08.1998
    11:16:53
    3072
    20
    Prg
    SAPLSVSM
    20
    18.02.2005
    14:16:06
    27648
    E
    21
    Prg
    SAPLSGUI
    21
    02.12.2006
    16:29:39
    82944
    E
    22
    Prg
    SAPLSTTM
    22
    05.07.2005
    13:10:18
    69632
    E
    23
    Prg
    SAPLSBDC
    23
    05.07.2005
    13:10:18
    44032
    E
    24
    Prg
    CL_DATAPROVIDER===============CP
    24
    28.02.2005
    21:00:46
    49152
    E
    25
    Prg
    %_CCNTL
    24
    18.02.2005
    14:15:08
    15360
    E
    26
    Typ
    OBJ_RECORD
    0
    14.02.1998
    08:30:43
    2048
    27
    Prg
    SAPLSTUP
    27
    08.03.2005
    19:04:31
    73728
    E
    28
    Prg
    SAPLCNDP
    28
    02.12.2006
    15:06:02
    193536
    E
    29
    Prg
    SAPSHDTV
    18
    05.01.2005
    16:26:16
    33792
    E
    30
    Prg
    SAPFGUICNTL
    1
    18.02.2005
    14:15:08
    24576
    E
    31
    Prg
    SAPLOLEA
    31
    05.07.2005
    13:10:18
    96256
    E
    32
    Prg
    SAPLSFES
    32
    06.02.2007
    17:51:50
    256000
    E
    33
    Prg
    SAPLSPLUGIN
    33
    09.09.2004
    14:18:36
    8192
    E
    34
    Typ
    ARFCRDATA
    0
    13.02.2005
    18:20:24
    7168
    35
    Prg
    SAPLGRFC
    35
    13.02.2005
    18:20:25
    16384
    E
    36
    Typ
    SWCBCONT
    0
    15.11.2000
    17:55:11
    3072
    37
    Typ
    OLE_VERBS
    0
    04.04.1995
    16:02:20
    2048
    38
    Typ
    OLE_PA
    0
    04.04.1995
    16:02:19
    2048
    39
    Prg
    CX_SY_REF_IS_INITIAL==========CP
    39
    05.07.2005
    13:10:16
    10240
    E
    40
    Typ
    SCX_SRCPOS
    0
    18.05.2004
    14:07:11
    2048
    41
    Prg
    CX_DYNAMIC_CHECK==============CP
    41
    05.07.2005
    13:10:16
    10240
    E
    42
    Prg
    CX_ROOT=======================CP
    42
    05.07.2005
    13:10:16
    11264
    E
    43
    Prg
    CX_NO_CHECK===================CP
    43
    05.07.2005
    13:10:16
    10240
    E
    Directory of Application Tables
    Name                                     Date       Time       Lngth
    Val.
    Program  ZNARI_CLASS
    SYST                                     09.09.2004 14:18:12   00004612
    \0\0\0\0\x0001\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x0001
    ABAP Control Blocks (CONT)
    Index
    Name
    Fl
    PAR0
    PAR1
    PAR2
    PAR3
    PAR4
    PAR5
    PAR6
    Source Code
    Line
    38
    PERP
    80
    0002
    <SYSINI>
    49
    39
    ENDM
    00
    0000
    <SYSINI>
    50
    40
    00
    0000
    <SYSINI>
    50
    41
    xper
    06
    E90D
    0012
    0019
    <SYSINI>
    55
    43
    PERP
    80
    0001
    <SYSINI>
    55
    44
    PERP
    80
    0002
    <SYSINI>
    55
    45
    ENDM
    00
    0000
    <SYSINI>
    56
    46
    00
    0000
    <SYSINI>
    56
    47
    xper
    06
    2F0C
    001F
    001D
    ZNARI_CLASS
    9
    49
    PERP
    80
    0001
    ZNARI_CLASS
    9
    50
    PERP
    80
    001E
    ZNARI_CLASS
    9
    51
    00
    0000
    ZNARI_CLASS
    9
    >>>>>
    clom
    00
    0000
    0020
    0001
    0000
    0000
    0000
    0000
    ZNARI_CLASS
    17
    56
    PAR2
    00
    0000
    0001
    0000
    ZNARI_CLASS
    17
    58
    00
    0000
    ZNARI_CLASS
    17
    59
    xper
    06
    0DB9
    0021
    0022
    ZNARI_CLASS
    18
    61
    PERP
    80
    0001
    ZNARI_CLASS
    18
    62
    PERP
    80
    0023
    ZNARI_CLASS
    18
    63
    00
    0000
    ZNARI_CLASS
    18
    64
    PARA
    00
    0000
    0024
    0025
    ZNARI_CLASS
    18
    regards,
    Balaram

    Hello,
    From what you display it seems that you have a program called ZNARI_CLASS that was called directly or by another application.
    This program has its code started like this:
    Line      SourceCde
    1      &----
    2      *& Report ZNARI_CLASS
    3      *&
    4      &----
    5      *&
    6      *&
    7      &----
    8      
    9      REPORT ZNARI_CLASS.
    10      
    11      
    12      
    13      DATA : CAL1 TYPE REF TO ZCALLING4.
    14      
    15      START-OF-SELECTION.
    16      
    >>>>>      CALL METHOD CAL1->DISPLAY.
    Well, by the time it was called the variabel CAL1 was empty. This variable is defined by:
    DATA : CAL1 TYPE REF TO ZCALLING4.
    Which means that ZCALLING4 was empty too so the program tried to display an empty variable (CAL1) and generated the short dump:
    You attempted to use a 'NULL' object reference (points to 'nothing')
    access a component (variable: "CAL1").
    Diogo.

  • OBJECTS_OBJREF_NOT_ASSIGNED" "CX_SY_REF_IS_INITIAL" ZAP2_INTERFACE_LOG46C"

    Hello,
    Pls i want immediate reply.. i got this error.. i will give full points...ps help me
    Thanks in advance.
    Runtime Errors         OBJECTS_OBJREF_NOT_ASSIGNED
    Exception              CX_SY_REF_IS_INITIAL
    Date and Time          16.09.2008 12:31:36
    Short text
    Access via 'NULL' object reference not possible.
    What happened?
    Error in the ABAP Application Program
    The current ABAP program "ZAP2_INTERFACE_LOG46C" had to be terminated because
    it has
    come across a statement that unfortunately cannot be executed.
    What can you do?
    Note down which actions and inputs caused the error.
    To process the problem further, contact you SAP system
    administrator.
    Using Transaction ST22 for ABAP Dump Analysis, you can look
    at and manage termination messages, and you can also
    keep them for a long time.
    Error analysis
    An exception occurred that is explained in detail below.
    The exception, which is assigned to class 'CX_SY_REF_IS_INITIAL', was not
    caught and
    therefore caused a runtime error.
    The reason for the exception is:
    You attempted to use a 'NULL' object reference (points to 'nothing')
    access a component (variable: "TYPE_DESCR").
    An object reference must point to an object (an instance of a class)
    before it can be used to access components.
    Either the reference was never set or it was set to 'NULL' using the
    CLEAR statement.
    How to correct the error
    If the error occures in a non-modified SAP program, you may be able to
    find an interim solution in an SAP Note.
    If you have access to SAP Notes, carry out a search with the following
    keywords:
    "OBJECTS_OBJREF_NOT_ASSIGNED" "CX_SY_REF_IS_INITIAL"
    "ZAP2_INTERFACE_LOG46C" or "ZAP2_INTERFACE_LOG46C"
    "LOAD-OF-PROGRAM"
    If you cannot solve the problem yourself and want to send an error
    notification to SAP, include the following information:
    1. The description of the current problem (short dump)
    To save the description, choose "System->List->Save->Local File
    (Unconverted)".
    2. Corresponding system log
    Display the system log by calling transaction SM21.
    Restrict the time interval to 10 minutes before and five minutes
    after the short dump. Then choose "System->List->Save->Local File
    (Unconverted)".
    3. If the problem occurs in a problem of your own or a modified SAP
    program: The source code of the program
    In the editor, choose "Utilities->More
    Utilities->Upload/Download->Download".
    4. Details about the conditions under which the error occurred or which
    actions and input led to the error.
    System environment
    SAP-Release 700
    Application server... "ciRDE"
    Network address...... "10.131.28.7"
    Operating system..... "HP-UX"
    Release.............. "B.11.23"
    Hardware type........ "ia64"
    Character length.... 16 Bits
    Pointer length....... 64 Bits
    Work process number.. 0
    Shortdump setting.... "full"
    Database server... "hpx190"
    Database type..... "ORACLE"
    Database name..... "RDE"
    Database user ID.. "SAPDAT"
    Char.set.... "C"
    SAP kernel....... 700
    created (date)... "Apr 21 2008 20:48:34"
    create on........ "HP-UX B.11.23 U ia64"
    Database version. "OCI_102 (10.2.0.1.0) "
    Patch level. 157
    Patch text.. " "
    Database............. "ORACLE 9.2.0.., ORACLE 10.1.0.., ORACLE 10.2.0.."
    SAP database version. 700
    Operating system..... "HP-UX B.11"
    Memory consumption
    Roll.... 16192
    EM...... 8379680
    Heap.... 0
    Page.... 0
    MM Used. 990672
    MM Free. 3196544
    User and Transaction
    Client.............. 050
    User................ "MBAGGALA"
    Language key........ "E"
    Transaction......... "ZAP2_LOGGING_46C "
    Transactions ID..... "48CF3452569D34B8E10000000A831C07"
    Program............. "ZAP2_INTERFACE_LOG46C"
    Screen.............. "SAPMSSY0 1000"
    Screen line......... 3
    Information on where terminated
    Termination occurred in the ABAP program "ZAP2_INTERFACE_LOG46C" - in
    "LOAD-OF-PROGRAM".
    The main program was "ZAP2_INTERFACE_LOG46C ".
    In the source code you have the termination point in line 20
    of the (Include) program "ZAP2_INTERFACE_LOG46C".
    Source Code Extract
    Line
    SourceCde
    1
    REPORT zap2_interface_log46c .
    2
    3
    *& Report  ZAP2_INTERFACE_LOGGING                                      *
    4
    5
    6
    7
    8
    9
    10
    INCLUDE zap2_interface_logg46c_top .
    11
    INCLUDE zap2_interface_logg46c_cl1.
    12
    INCLUDE zap2_interface_logg46c_stato01.
    13
    INCLUDE zap2_interface_logg46c_set_f01.
    14
    15
    LOAD-OF-PROGRAM.
    16
    17
    IF kind_p IS INITIAL.
    18
    DATA type_descr2 TYPE REF TO cl_abap_elemdescr.
    19
    TYPE_DESCR ?= zap2_cl_abap_typedescr=>describe_by_data( kind_p-kind ).
    >>>>>
    FIXED_VALUES = TYPE_DESCR->GET_DDIC_FIXED_VALUES( SY-LANGU ).
    21
    22
    23
    LOOP AT fixed_values INTO fixed_value.
    24
    MOVE: fixed_value-low TO kind_p-kind,
    25
    fixed_value-ddtext TO kind_p-ddtext.
    26
    APPEND kind_p.
    27
    ENDLOOP.
    28
    ENDIF.
    29
    30
    debug_l = 'X'.
    31
    sdebug_g = 'X'.
    32
    edebug_g = ' '.
    33
    return_g = 'X'.
    34
    35
    START-OF-SELECTION.
    36
    37
    IF NOT element IS INITIAL.
    38
    MOVE 'I' TO elemt_r-sign.
    39
    MOVE 'EQ' TO elemt_r-option.
    Contents of system fields
    Name
    Val.
    SY-SUBRC
    0
    SY-INDEX
    0
    SY-TABIX
    0
    SY-DBCNT
    0
    SY-FDPOS
    0
    SY-LSIND
    0
    SY-PAGNO
    0
    SY-LINNO
    1
    SY-COLNO
    1
    SY-PFKEY
    SY-UCOMM
    SY-TITLE
    Logging tools 46c
    SY-MSGTY
    SY-MSGID
    SY-MSGNO
    000
    SY-MSGV1
    SY-MSGV2
    SY-MSGV3
    SY-MSGV4
    SY-MODNO
    1
    SY-DATUM
    20080916
    SY-UZEIT
    123133
    SY-XPROG
    SY-XFORM
    Active Calls/Events
    No.   Ty.          Program                             Include                             Line
    Name
    2 EVENT        ZAP2_INTERFACE_LOG46C               ZAP2_INTERFACE_LOG46C                  20
    LOAD-OF-PROGRAM
    1 EVENT        ZAP2_INTERFACE_LOG46C               ???                                     0
    SYSTEM-EXIT
    Chosen variables
    Name
    Val.
    No.       2 Ty.          EVENT
    Name  LOAD-OF-PROGRAM
    KIND_P
    0000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000
    0222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000
    CL_GUI_CFW=>FLUSH_SITUATION_PBO
    %_CDATE_%_APP_%
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    %_FSREG_001
    SY-REPID
    ZAP2_INTERFACE_LOG46C
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    5453544545444454443342222222222222222222
    A102F9E4526135FCF74630000000000000000000
    %_DUMMY$$
    0000
    0000
    2222
    0000
    KIND_P-KIND
    32
    0
    0
    TYPE_DESCR
    F0000000
    F0000000
    SYST
    ########################################################################################X ####
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E000200
    0000000000000000000000000000000000000001000000000000000000000000000000000000010900000001520000
    00000000000000000000000001000100000000080000000000000000000000000000000000000B000000000080000C
    SY-LANGU
    E
    0
    0
    4
    5
    FIXED_VALUES
    Table[initial]
    FIXED_VALUE
    00000000000000000000000000000000000000000000000000000000000000000000000000000000000
    00000000000000000000000000000000000000000000000000000000000000000000000000000000000
    22222222222222222222222222222222222222222222222222222222222222222222222222222222222
    00000000000000000000000000000000000000000000000000000000000000000000000000000000000
    SPACE
    0
    0
    2
    0
    FIXED_VALUE-LOW
    0000000000
    0000000000
    2222222222
    0000000000
    SESSION
                                 00000000000000####
    0000000000000000000000000000000000000000000000000000F000
    0000000000000000000000000000000000000000000000000000F000
    00000000222222222222222222222222222222333333333333330000
    00000000000000000000000000000000000000000000000000000000
    KIND_P[]
    Table[initial]
    CTIME-LOW
    000000
    000000
    000000
    333333
    000000
    CL_GUI_CONTROL=>LIFETIME_DEFAULT
    No.       1 Ty.          EVENT
    Name  SYSTEM-EXIT
    SY-XPROG
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    2222222222222222222222222222222222222222
    0000000000000000000000000000000000000000
    SY-XFORM
    000000000000000000000000000000
    000000000000000000000000000000
    222222222222222222222222222222
    000000000000000000000000000000
    Internal notes
    The termination was triggered in function "ab_jclom"
    of the SAP kernel, in line 4706 of the module
    "//bas/700_REL/src/krn/runt/abmethod.c#8".
    The internal operation just processed is "clom".
    Internal mode was started at 20080916123133.
    Active Calls in SAP Kernel
    Lines of C Stack in Kernel (Structure Differs on Each Platform)
    (0)  0x4000000003b5b450  CTrcStack + 0x1b0 at dptstack.c:227 [dw.sapRDE_DVEBMGS02]
    (1)  0x4000000004d564b0  Z16rabaxCStackSavev + 0x1d0 [dw.sapRDE_DVEBMGS02]
    (2)  0x4000000004d5c1a0  ab_rabax + 0x3570 [dw.sapRDE_DVEBMGS02]
    (3)  0x40000000040a2310  Z8abjclomv + 0x1690 [dw.sapRDE_DVEBMGS02]
    (4)  0x40000000040557d0  Z8abextriv + 0x440 [dw.sapRDE_DVEBMGS02]
    (5)  0x4000000003f79bb0  Z9abxeventPKt + 0xb0 at abrunt1.c:281 [dw.sapRDE_DVEBMGS02]
    (6)  0x4000000003dc02b0  Z8ablogdbv + 0xb70 at ablogdb.c:116 [dw.sapRDE_DVEBMGS02]
    (7)  0x4000000004345ea0  ab_subm + 0x20 at absubmit.c:595 [dw.sapRDE_DVEBMGS02]
    (8)  0x4000000001cb97c0  N_ab_subm + 0x20 at dymainstp.c:4769 [dw.sapRDE_DVEBMGS02]
    (9)  0x4000000001cc3610  dynpmcal + 0x3f0 at dymainstp.c:2275 [dw.sapRDE_DVEBMGS02]
    (10) 0x4000000001cba000  dynppbo0 + 0x280 at dymainstp.c:540 [dw.sapRDE_DVEBMGS02]
    (11) 0x4000000001cc13e0  dynprctl + 0x340 at dymainstp.c:358 [dw.sapRDE_DVEBMGS02]
    (12) 0x4000000001cacc00  dynpen00 + 0xae0 at dymain.c:1651 [dw.sapRDE_DVEBMGS02]
    (13) 0x4000000001fff3d0  Thdynpen00 + 0x520 at thxxhead.c:4843 [dw.sapRDE_DVEBMGS02]
    (14) 0x4000000001fc9b80  TskhLoop + 0x5690 at thxxhead.c:3958 [dw.sapRDE_DVEBMGS02]
    (15) 0x4000000001fbf320  ThStart + 0x460 at thxxhead.c:1164 [dw.sapRDE_DVEBMGS02]
    (16) 0x4000000001576800  DpMain + 0x5f0 at dpxxdisp.c:1095 [dw.sapRDE_DVEBMGS02]
    (17) 0x4000000002c30590  nlsui_main + 0x30 [dw.sapRDE_DVEBMGS02]
    (18) 0x4000000002c30520  main + 0x60 [dw.sapRDE_DVEBMGS02]
    (19) 0xc000000000050150  main_opd_entry + 0x50 [/usr/lib/hpux64/dld.so]
    List of ABAP programs affected
    Index
    Typ
    Program
    Group
    Date
    Time
    Size
    Lang.
    0
    Prg
    ZAP2_INTERFACE_LOG46C
    0
    15.09.2008
    13:34:03
    103424
    E
    1
    Prg
    SAPMSSY0
    1
    11.08.2008
    21:12:03
    92160
    E
    2
    Prg
    SAPMSSYD
    1
    16.08.2006
    12:06:37
    21504
    E
    3
    Prg
    SAPFSYSCALLS
    1
    09.09.2004
    14:18:32
    8192
    E
    4
    Prg
    ZAP2_CL_ABAP_TYPEDESCR========CP
    4
    21.08.2008
    18:03:55
    23552
    E
    5
    Prg
    ZAP2_CL_ABAP_ELEMDESCR========CP
    5
    21.08.2008
    18:03:55
    21504
    E
    6
    Prg
    ZAP2_CL_ABAP_DATADESCR========CP
    6
    21.08.2008
    18:03:55
    14336
    E
    7
    Prg
    CL_ABAP_REFDESCR==============CP
    7
    05.07.2005
    13:10:15
    24576
    E
    8
    Prg
    CL_ABAP_DATADESCR=============CP
    8
    05.07.2005
    13:10:15
    19456
    E
    9
    Prg
    CL_ABAP_TYPEDESCR=============CP
    9
    05.07.2005
    13:10:15
    30720
    E
    10
    Prg
    CL_ABAP_ELEMDESCR=============CP
    10
    03.07.2006
    10:26:16
    36864
    E
    11
    Prg
    CL_ABAP_STRUCTDESCR===========CP
    11
    04.08.2008
    19:40:50
    40960
    E
    12
    Prg
    CL_ABAP_COMPLEXDESCR==========CP
    12
    05.07.2005
    13:10:15
    17408
    E
    13
    Prg
    CL_ABAP_TABLEDESCR============CP
    13
    05.07.2005
    13:10:15
    25600
    E
    14
    Prg
    CL_ABAP_CLASSDESCR============CP
    14
    05.07.2005
    13:10:15
    30720
    E
    15
    Prg
    CL_ABAP_OBJECTDESCR===========CP
    15
    05.07.2005
    13:10:15
    34816
    E
    16
    Prg
    CL_ABAP_INTFDESCR=============CP
    16
    05.07.2005
    13:10:15
    25600
    E
    17
    Prg
    ZAP2_CL_ABAP_STRUCTDESCR======CP
    17
    21.08.2008
    18:03:55
    18432
    E
    18
    Prg
    ZAP2_CL_ABAP_COMPLEXDESCR=====CP
    18
    21.08.2008
    18:03:55
    14336
    E
    19
    Prg
    ZAP2_CL_ABAP_TABLEDESCR=======CP
    19
    21.08.2008
    18:03:55
    18432
    E
    20
    Prg
    CX_SY_REF_IS_INITIAL==========CP
    20
    05.07.2005
    13:10:16
    10240
    E
    21
    Typ
    SCX_SRCPOS
    0
    18.05.2004
    14:07:11
    5120
    22
    Prg
    CX_DYNAMIC_CHECK==============CP
    22
    05.07.2005
    13:10:16
    10240
    E
    23
    Prg
    CX_ROOT=======================CP
    23
    04.08.2008
    18:59:23
    11264
    E
    24
    Prg
    CX_NO_CHECK===================CP
    24
    05.07.2005
    13:10:16
    10240
    E
    25
    Prg
    CL_GUI_CFW====================CP
    25
    28.02.2005
    21:03:09
    168960
    E
    26
    Typ
    SYST
    0
    09.09.2004
    14:18:12
    31744
    27
    Typ
    DDFIXVALUE
    0
    04.08.2008
    15:09:55
    3072
    28
    Prg
    CL_GUI_CONTROL================CP
    28
    28.02.2005
    21:03:09
    112640
    E
    29
    Prg
    %_CCNTL
    28
    18.02.2005
    14:15:08
    15360
    E
    30
    Typ
    OBJ_RECORD
    0
    14.02.1998
    08:30:43
    2048
    31
    Prg
    CL_GUI_OBJECT=================CP
    31
    04.08.2008
    19:41:02
    376832
    E
    32
    Prg
    IF_CACHED_PROP================IP
    28
    18.02.2005
    14:12:55
    5120
    E
    Directory of Application Tables
    Name                                     Date       Time       Lngth
    Val.
    Program  ZAP2_INTERFACE_LOG46C
    SYST                                     09.09.2004 14:18:12   00004612
    \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x0001\0
    ABAP Control Blocks (CONT)
    Index
    Name
    Fl
    PAR0
    PAR1
    PAR2
    PAR3
    PAR4
    PAR5
    PAR6
    Source Code
    Line
    1791
    00
    0000
    ZAP2_INTERFACE_LOGG46C_SET_F01
    653
    1792
    CMPS
    20
    0247
    0038
    0038
    ZAP2_INTERFACE_LOG46C
    17
    1794
    BRAF
    02
    002A
    ZAP2_INTERFACE_LOG46C
    17
    1795
    STCK
    05
    0000
    ZAP2_INTERFACE_LOG46C
    19
    1796
    ASSI
    0F
    0000
    0052
    400E
    0000
    0000
    0000
    0000
    ZAP2_INTERFACE_LOG46C
    19
    1800
    CLCC
    00
    0013
    ZAP2_INTERFACE_LOG46C
    19
    1801
    clcm
    10
    0002
    0013
    0001
    0000
    0000
    0000
    0000
    ZAP2_INTERFACE_LOG46C
    19
    1805
    PAR1
    00
    00E3
    ZAP2_INTERFACE_LOG46C
    19
    1806
    PAR1
    C5
    400E
    ZAP2_INTERFACE_LOG46C
    19
    1807
    PAR2
    00
    0000
    0001
    0000
    ZAP2_INTERFACE_LOG46C
    19
    1809
    CAST
    00
    0000
    0031
    400E
    ZAP2_INTERFACE_LOG46C
    19
    1811
    STCK
    06
    0000
    ZAP2_INTERFACE_LOG46C
    19
    >>>>>
    clom
    10
    0002
    0031
    0009
    0000
    0000
    0000
    0000
    ZAP2_INTERFACE_LOG46C
    20
    1816
    PAR1
    01
    00B7
    ZAP2_INTERFACE_LOG46C
    20
    1817
    PAR1
    C1
    0032
    ZAP2_INTERFACE_LOG46C
    20
    1818
    PAR2
    00
    0000
    0001
    0000
    ZAP2_INTERFACE_LOG46C
    20
    1820
    LOOP
    03
    0243
    0032
    0033
    0000
    0000
    0000
    0000
    ZAP2_INTERFACE_LOG46C
    23
    1824
    LOOP
    05
    0000
    0032
    0033
    0000
    0000
    0000
    0000
    ZAP2_INTERFACE_LOG46C
    23
    1828
    BRAN
    05
    0008
    ZAP2_INTERFACE_LOG46C
    23
    1829
    MOVE
    FF
    00F2
    00E3
    00E5
    ZAP2_INTERFACE_LOG46C
    24

    Hi Madan,
    It is BASIS issue, Please ask to find SNOTE correction for this issue. I am unable to recollect that note number.
    I am also face the same problem when I am installing the business content.
    Thanks,
    Chandra

  • BSP Application Runtime Error  OBJECTS_OBJREF_NOT_ASSIGNED

    Hi,
    Iam using the standard BSP application Employee (CRMM_EMPLOYEE). Iam trying to run from Portal and getting following error.
    ST22  short dump info:
    Runtime Errors         OBJECTS_OBJREF_NOT_ASSIGNED                                                                               
    "OBJECTS_OBJREF_NOT_ASSIGNED" " "                                                    
    "CL_CRM_BSP_IL=================CP" or "CL_CRM_BSP_IL=================CCIMP"          
    "GET_INSTANCES_OF_PRIMARY"                                                           
    We already implemented the OSS note for this kind of issue.
    0000616015
    0000632746
    Even we are getting this error                                                                               
    Any inputs???
    Thanks,
    DST
    Message was edited by:
            DST

    Hello,
    check note: #989167
    this should resolve the issue.
    Best regards,
    Dezso

  • Error objects_objref_not_assigned

    Hello Experts
    Need a help!!!!
    In our SCM system, whenever a user is executing the tcode /N/SCA/ICH, it open the page for supply network collaboration.
    When the user clicks on the SNI monitor>>inventory monitor options, he gets the error page as below:
    Error when processing your request
    What has happened?
    The URL http://fa0702.global.ctb:8000/sap/bc/webdynpro/scf/snc was not called due to an error. 
    Note
    The following error text was processed in the system AB1 : Access via 'NULL' object reference not possible.
    The error occurred on the application server FA0702_AB1_00 and in the work process 0 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Method: RENDER_DELTA_MATRIX of program CL_POWL_UI_HELPER=============CP
    Method: WDDOMODIFYVIEW of program /1BCWDY/9QU55KMOF586FWL5HFJX==CP
    Method: IF_WDR_VIEW_DELEGATE~WD_DO_MODIFY_VIEW of program /1BCWDY/9QU55KMOF586FWL5HFJX==CP
    Method: DO_MODIFY_VIEW of program CL_WDR_DELEGATING_VIEW========CP
    Method: MODIFY_VIEW of program CL_WDR_VIEW===================CP
    Method: DO_MODIFY_VIEW of program CL_WDR_CLIENT_COMPONENT=======CP
    Method: DO_MODIFY_VIEW of program CL_WDR_CLIENT_COMPONENT=======CP
    Method: DO_MODIFY_VIEW of program CL_WDR_CLIENT_COMPONENT=======CP
    Method: DO_MODIFY_VIEW of program CL_WDR_CLIENT_COMPONENT=======CP
    Method: DO_MODIFY_VIEW of program CL_WDR_WINDOW_PHASE_MODEL=====CP
    What can I do?
    If the termination type was RABAX_STATE, then you can find more information on the cause of the termination in the system AB1 in transaction ST22.
    If the termination type was ABORT_MESSAGE_STATE, then you can find more information on the cause of the termination on the application server FA0702_AB1_00 in transaction SM21.
    If the termination type was ERROR_MESSAGE_STATE, then you can search for more information in the trace file for the work process 0 in transaction ST11 on the application server FA0702_AB1_00 . In some situations, you may also need to analyze the trace files of other work processes.
    If you do not yet have a user ID, contact your system administrator.
    Error code: ICF-IE-http -c: 100 -u: BVABHISH -l: E -s: AB1 -i: FA0702_AB1_00 -w: 0 -d: 20110727 -t: 100851 -v: RABAX_STATE -e: OBJECTS_OBJREF_NOT_ASSIGNED
    HTTP 500 - Internal Server Error
    Your SAP Internet Communication Framework Team
    The other links works fine.
    I have checked ST22 and it refers to the error objects_objref_not_assigned.
    I have created another user id with same access, and it works fine with this id without any error.
    The BP mapping is the same for both the ids.
    Please suggest to get the issue resolved.
    Thanks
    Amitava

    Hi Das,
    Below notes will help you to overcome NULL dump.
    Notes :1163483 and 1150554.
    Thanks/Mallampalli.T

  • ABAP DUMP - OBJECTS_OBJREF_NOT_ASSIGNED

    Hi Experts
    We are facing the dump  OBJECTS_OBJREF_NOT_ASSIGNED very regularly in ST22.
    Error Details
    Short text
         Access via 'NULL' object reference not possible.
    What happened?
         Error in the ABAP Application Program
         The current ABAP program "CL_CRM_BSP_FRAME_SRES=========CP" had to be
          terminated because it has
         come across a statement that unfortunately cannot be executed.
    please letme Know why this dump is comming reguraly and what action to be taken to aviod such dumps
    Thanks
    kumar

    Hi,
    What does this applicaiton do? Is it anywhere linked to Transactions in CRM.
    We faced similar Dump in CRM SAPGUI. and that was when we entered the Tcode: CRMD_ORDER.
    Just try the same with another User ID. If the dump doesnot occur then follow the procedure below:
    Tcode: SU01
    Open the User for which teh dump is coming.
    Goto Parameters tab
    Enter follwoing:
    Parameter ID: CRM_PROCESS_TYPE
    Parameter Value: TA
    SAVE.
    This should resolve,
    Kindly reward with points in case helpful
    Sharif.

  • Error Message: "OBJECTS_OBJREF_NOT_ASSIGNED"

    Hi All,
         One of our cube to which we are picking the data from oracle using DBConnect creating a problem. In monitor screen, the request is still running. But in ST22, it throwed a runtime error with the short text "Access not possible using 'NULL' object reference."
    Following is the log we found in SM37:-
    04:30:25 Job started
    04:30:25 Step 001 started (program RSBATCH1, variant &000
    04:30:28 Start InfoPackage ZPAK_49H0QZHXXI388W5UL17HMHOJC
    04:42:15 SQL: 11.11.2008 04:42:15 SRIKANTH
    04:42:15 ALTER TABLE "/BIC/FZNCUNDAT1" ADD PARTITION
    04:42:15 "/BIC/FZNCUNDAT10000000351" VALUES LESS THAN
    04:42:15 (0000000351 ) TABLESPACE "PSAPPBW"
    04:42:15 SQL-END: 11.11.2008 04:42:15 00:00:00
    04:42:16 SQL: 11.11.2008 04:42:16 SRIKANTH
    04:42:16 ALTER TABLE "/BIC/FZNCUNDAT1" MODIFY PARTITION
    04:42:16 "/BIC/FZNCUNDAT10000000351" REBUILD UNUSABLE
    04:42:16 LOCAL INDEXES
    04:42:16 SQL-END: 11.11.2008 04:42:16 00:00:00
    04:42:16 SQL: 11.11.2008 04:42:16 SRIKANTH
    04:42:16 ANALYZE TABLE "/BIC/FZNCUNDAT1" PARTITION (
    04:42:16 "/BIC/FZNCUNDAT10000000351" ) ESTIMATE STATISTIC
    04:42:16 SAMPLE 10 PERCENT
    04:42:16 SQL-END: 11.11.2008 04:42:16 00:00:00
    04:44:26 ABAP/4 processor: OBJECTS_OBJREF_NOT_ASSIGNED
    04:44:26 Job cancelled
           We are not using any routine in the update rules. We also tried to load upto psa, then also it gave the same error. We are using BW3.5.
            Please help us to solve this issue.
    Regards,
    Yokesh.
    Edited by: YOKESH KUMAR VELUSAMY on Nov 11, 2008 11:57 AM

    Hi Reddy,
    The problem got solved. Actually, it is not a table space issue since there is enough table space. We are picking the data from DBConnect. And the number of records to be picked by this request is exactly 5000. In Data S. Default Data Transfer Settings options in the Info Package, the no of records per packet had been set to 5000 (the default value). We changed this to 2500, but again we got the same error. We changed it to 3000, and the data loaded. Could this be because the number of records to be loaded (5000) was an exact multiple of the previous data transfer settings (2500 and 5000)? The moment we set it to a non-multiple, the data loaded succesffully.
    The OSS note 987104 suggests this problem happens when the source SQL table doesn't contain data. But here it contains 5000 records. Anyway, it is solved for now. Thanks for your help, Reddy
    Edited by: YOKESH KUMAR VELUSAMY on Nov 11, 2008 2:21 PM

  • OBJECTS_OBJREF_NOT_ASSIGNED - E-Recruitment Candidate Selection Error

    HI guys
    Im getting this error when i access the page Candidate selection to assign to requisition in E-Recruitment.
    OBJECTS_OBJREF_NOT_ASSIGNED
    You attempted to use a 'NULL' object reference (points to 'nothing')
    access a component (variable: " ").
    An object reference must point to an object (an instance of a class)
    before it can be used to access components.
    Either the reference was never set or it was set to 'NULL' using the
    CLEAR statement.
    Can any one tell me which entry im missing and in what table??
    Thanks
    Saad

    Hi Bala
    Thanks for the guidance but the error i mentioned is actually taken by using *T.Code ST22.*
    I am stating the error again. Plz plz plz help me out if u ever came up with such error. Will be grateful to you.
    Runtime Errors         OBJECTS_OBJREF_NOT_ASSIGNED
    Short text
        Access via 'NULL' object reference not possible.
    What happened?
        Error in the ABAP Application Program
        The current ABAP program "CL_HRRCF_SEARCH_CRITERIA_ENT_VCP" had to be
         terminated because it has
        come across a statement that unfortunately cannot be executed.
    What can you do?
        Note down which actions and inputs caused the error.
        To process the problem further, contact you SAP system
        administrator.
        Using Transaction ST22 for ABAP Dump Analysis, you can look
        at and manage termination messages, and you can also
        keep them for a long time.
    Error analysis
        You attempted to use a 'NULL' object reference (points to 'nothing')
        access a component (variable: " ").
        An object reference must point to an object (an instance of a class)
        before it can be used to access components.
    Either the reference was never set or it was set to 'NULL' using the
    CLEAR statement.
    Regards,
    Saad

  • Job SWWDHEX getting cancelled - OBJECTS_OBJREF_NOT_ASSIGNED

    Hi Guys,
    Here is the scenario:
    We modified WF 90000081 in dev box. In production, the workflow has been triggered and is awaiting response from agent.
    WF 90000081 has been moved to production, the workitems created by the WF in production is still awaiting response from the agent.
    Now, the job SWWDHEX runs after the WF is in production. The job is cancelled due to OBJECTS_OBJREF_NOT_ASSIGNED.
    In ST22, here is the details:
    Error analysis
    An exception occurred that is explained in detail below. The exception, which is assigned to class 'CX_SY_REF_IS_INITIAL', was not caught in procedure "IF_SWF_WFM_COMPONENT~RAISE_EXCEPTION" "(METHOD)", nor was it propagated by a RAISING clause.
    Question: How are we going to get away with it? Is there any SAP note which can help with this? I have looked note 1422978, it seems good and could solve the issue, but when I check on the method where the fix will be implemented, I checked in the Events called in ST22, the method is not being called by the job.
    Please advise.
    Thank you!

    Hello,
    Check if WF-BATCH is okay, ie password not changed and password not expired and it still has its roles.
    regards
    Rick Bakker
    Hanabi Technology

  • Runtime Errors         OBJECTS_OBJREF_NOT_ASSIGNED

    Runtime Errors         OBJECTS_OBJREF_NOT_ASSIGNED
    Except.                CX_SY_REF_IS_INITIAL
    Date and Time          24.09.2007 11:27:19
    Short dump has not been completely stored (too big)
    Short text
         Access via 'NULL' object reference not possible.
    What happened?
         Error in the ABAP Application Program
         The current ABAP program "CL_TRIGGER_SELECTOR_PPF=======CP" had to be
          terminated because it has
         come across a statement that unfortunately cannot be executed.
    What can you do?
         Note down which actions and inputs caused the error.
         To process the problem further, contact you SAP system
         administrator.
         Using Transaction ST22 for ABAP Dump Analysis, you can look
         at and manage termination messages, and you can also
         keep them for a long time.
    Hi ,
            Can you please provide me the solution for the above error, it is related to configuration of Service Desk on SAP Solution Manager.

    Hi,
    check these notes,
    783918
    660005
    This should solve your problem.
    if not please mention when you ran into this error, which would help in providing a solution.
    Feel free to revert back.
    --Ragu

  • BAPI_SAG_CHANGE: dump OBJECTS_OBJREF_NOT_ASSIGNED

    Hello,
    I have just written a custom report that calls BAPI_SAG_CHANGE.
    It works fine if run in foreground, but if run in background, with the same data, I get a dump:
    Runtime error
    OBJECTS_OBJREF_NOT_ASSIGNED
    Exception    
    CX_SY_REF_IS_INITIAL
    Some more infos:
    I'm working on a system with following software component:
              SAP_APPL    600    0021    SAPKH60021
    I have just applied two more SAP Notes, 1719540 and 1730058 (released with SAPKH60022) but error happen as well
    Here following I copy source code of my own form. Of course <fs_alv> is assigned and all fields are filled with their own value and just before this piece of code I have just done a CLEAR and a FREE of all tables/structures used by the BAPI
    wa_header-number  = <fs_alv>-ebeln.
    wa_headerx-number = <fs_alv>-ebeln.
    wa_schedule-item_no = <fs_alv>-ebelp.
    wa_schedule-sched_line = <fs_alv>-etenr.
    wa_schedule-quantity   = <fs_alv>-wemng.
    APPEND wa_schedule TO tb_schedule.
    wa_schedulex-item_no = <fs_alv>-ebelp.
    wa_schedulex-sched_line = <fs_alv>-etenr.
    wa_schedulex-quantity   = 'X'.
    APPEND wa_schedulex TO tb_schedulex.
    CALL FUNCTION 'BAPI_SAG_CHANGE'
    EXPORTING
    purchasingdocument
    = <fs_alv>-ebeln
    header         
    = wa_header
    headerx        
    = wa_headerx
    TABLES
    return         
    = tb_bapiret2
    schedule
    = tb_schedule
    schedulex      
    = tb_schedulex.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    EXPORTING
    wait = 'X'.
    Here following I post the first page of the dump, copied from ST22:
    Short Text    Access via 'NULL' object reference not possible.   What happened?    Error in the ABAP Application Program     The current ABAP program "CL_MASTER_CONDITIONS_MM=======CP" had to be     terminated because it has    come across a statement that unfortunately cannot be executed.   What can you do?    Note down which actions and inputs caused the error.      To process the problem further, contact you SAP system    administrator.     Using Transaction ST22 for ABAP Dump Analysis, you can look    at and manage termination messages, and you can also    keep them for a long time.   Error analysis    An exception occurred that is explained in detail below.    The exception, which is assigned to class 'CX_SY_REF_IS_INITIAL', was not     caught in    procedure "IF_MASTER_CONDITIONS_MM~GET_PERSISTENT_DATA" "(METHOD)", nor was it     propagated by a RAISING clause.    Short Text    Access via 'NULL' object reference not possible.   What happened?    Error in the ABAP Application Program     The current ABAP program "CL_MASTER_CONDITIONS_MM=======CP" had to be     terminated because it has    come across a statement that unfortunately cannot be executed.   What can you do?    Note down which actions and inputs caused the error.      To process the problem further, contact you SAP system    administrator.     Using Transaction ST22 for ABAP Dump Analysis, you can look    at and manage termination messages, and you can also    keep them for a long time.   Error analysis    An exception occurred that is explained in detail below.    The exception, which is assigned to class 'CX_SY_REF_IS_INITIAL', was not caught in    procedure "IF_MASTER_CONDITIONS_MM~GET_PERSISTENT_DATA" "(METHOD)", nor was it     propagated by a RAISING clause.
    Do anybody have experience about this problem?
    Thank you!
    Guido

    Solved.
    I have just applied Sap Note 1694513 in order to solve the dump.
    Ciao,
    Guido

  • CL_RSR_REQUEST,OBJECTS_OBJREF_NOT_ASSIGNED error when preview iView in EP 5

    When i tried to preview the iView in EP 5, i came to a page where it says "Error when processing your request".
    Note
    The following error text was processed in the system NYP : Access via 'NULL' object reference not possible.
    The error occurred on the application server server5_NYP_00 and in the work process 0 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Method: VARIABLES_START of program CL_RSR_REQUEST================CP
    Method: VARIABLE_START of program CL_RSR_WWW_VARIABLE_SCREEN====CP
    Method: SET of program CL_RSR_WWW_VARIABLE_SCREEN====CP
    Method: PROCESS_VARIABLES of program CL_RSR_WWW_PAGE===============CP
    Method: PROCESS_CMD_LOCAL of program CL_RSR_WWW_PAGE===============CP
    Method: PROCESS_CMD of program CL_RSR_WWW_PAGE===============CP
    Function: RRW3_WEBRFC of program SAPLRRW3
    Method: IF_HTTP_EXTENSION~HANDLE_REQUEST of program CL_RSR_WWW_HTTP===============CP
    Method: EXECUTE_REQUEST_FROM_MEMORY of program CL_HTTP_SERVER================CP
    Function: HTTP_DISPATCH_REQUEST of program SAPLHTTP_RUNTIME
    Error code: ICF-IE-http -c: 001 -u: USER00 -l: E -s: NYP -i: server5_NYP_00 -w: 0 -d: 20080128 -t: 102805 -v: RABAX_STATE -e: OBJECTS_OBJREF_NOT_ASSIGNED
    When i used TCODE ST22 to check the ABAP error, it says that "You attempted to use a 'NULL' object reference (points to 'nothing') access a component (variable: " "). An object reference must point to an object (an instance of a class) before it can be used to access components. Either the reference was never set or it was set to 'NULL' using the CLEAR statement.". This error occurred in VARIABLE_START method.
    When i searched the forums and also SAP notes, it says that I need to download and execute "SAPBINews BI 7.0 Support Package 15". Is this feasible?

    Hi lin,
    You solved your problem, if ye... Can you talked that make to solve your problem
    Att,
    Alexandre

  • Dunning - ST22- Exception in GET_DUNNING_CUSTOMIZING FM.

    Hi Experts,
    Issue is,
    When the user ran the Dunning report on July 16th, (selection criteria is--> July 16th & From customer 1 TO customer 999999999), bcoz of some thing, at CUST_444, the Exception was raised (say, for customers CUST_111, CUST_222, CUST_333, its successful), saying that...ABAP/4 processor: RAISE_EXCEPTION and it stopped there/job cancelled!
    So, now, again when the user wants to(subsequent running of dunning report) run the report for customer 1 to 999999999, SAP is blocking CUST_111, CUST_222, CUST_333 reports and saying already printed on July 16th!
    ST22- Exception in GET_DUNNING_CUSTOMIZING FM.
    So, How to fix it? I guess, we hv to delete the July 16th history report, If so, How to delete it?
    thanq.
    Message was edited by:
            Srikhar

    Hi Sheshu,
    If u get chance, pls. culd u respond to my other thread, title is,
    <i><b>SM 30 -
    AUTHORITY-CHECK OBJECT 'XXX' ??</b></i>
    search criteria: authority-check object
    area: abap general-abap development
    time: 7 days.
    Pls. clarify my doubts, sent to Roman!
    I copied and paste the same code to my requiremetn, after declaring necessory data part, but not working!
    if u did not find the thread , pls. let me know!
    thanq.

  • ST22 short dump with error DFIF_REPO_SQL_ERROR

    HI, All
    SAP ERP 2004s on windows 2003x64 with SQLserver database.
    Here is ST22 and dev_w0
    20.03.2014                                      Dynamic List Display                                              1
    Runtime Error
    |Date      |Time    |Host      |User  |Client|Keep|Name of runtime error|Exception|Appl. component|Report|No. Sess|
    |20.03.2014|08:48:44|clusterx64|SAPSYS|000  |C  |DBIF_REPO_SQL_ERROR  |        |              |      |1      |
    |20.03.2014|08:18:44|clusterx64|SAPSYS|000  |C  |DBIF_REPO_SQL_ERROR  |        |              |      |1      |
    D:\usr\sap\PRD\DVEBMGS00\work\dev_w0
    trc file: "dev_w0", trc level: 1, release: "640"
    *  ACTIVE TRACE LEVEL          1
    *  ACTIVE TRACE COMPONENTS      all, M
    B
    B Mon Mar 17 13:26:13 2014
    B  create_con (con_name=R/3)
    B  Loading DB library 'D:\usr\sap\PRD\SYS\exe\run\dbmssslib.dll' ...
    B  Library 'D:\usr\sap\PRD\SYS\exe\run\dbmssslib.dll' loaded
    B  Version of 'D:\usr\sap\PRD\SYS\exe\run\dbmssslib.dll' is "640.00", patchlevel (0.405)
    B  New connection 0 created
    M sysno      00
    M sid        PRD
    M systemid  562 (PC with Windows NT)
    M relno      6400
    M patchlevel 0
    M patchno    414
    M intno      20020600
    M make:      multithreaded, Unicode, 64 bit
    M pid        4544
    M
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 4544) [dpxxdisp.c  1227]
    I  MtxInit: -2 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpShMCreate: sizeof(wp_adm) 58560 (1464)
    M  DpShMCreate: sizeof(tm_adm) 38387184 (19184)
    M  DpShMCreate: sizeof(wp_ca_adm) 24000 (80)
    M  DpShMCreate: sizeof(appc_ca_adm) 8000 (80)
    M  DpShMCreate: sizeof(comm_adm) 1248000 (624)
    M  DpShMCreate: sizeof(vmc_adm) 0 (512)
    M  DpShMCreate: sizeof(wall_adm) (400056/346328/64/192)
    M  DpShMCreate: SHM_DP_ADM_KEY (addr: 000000000B9B0050, size: 40479544)
    M  DpShMCreate: allocated sys_adm at 000000000B9B0050
    M  DpShMCreate: allocated wp_adm at 000000000B9B1C30
    M  DpShMCreate: allocated tm_adm_list at 000000000B9C00F0
    M  DpShMCreate: allocated tm_adm at 000000000B9C0118
    M  DpShMCreate: allocated wp_ca_adm at 000000000DE5BF08
    M  DpShMCreate: allocated appc_ca_adm at 000000000DE61CC8
    M  DpShMCreate: allocated comm_adm_list at 000000000DE63C08
    M  DpShMCreate: allocated comm_adm at 000000000DE63C20
    M  DpShMCreate: allocated vmc_adm_list at 000000000DF94720
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated ca_info at 000000000DF94748
    M  DpShMCreate: allocated wall_adm at 000000000DF947B8
    M  DpRqQInit: Parameter rdisp/queue_lock_level = 2
    M  ThTaskStatus: rdisp/reset_online_during_debug 0
    X  EmInit: MmSetImplementation( 2 ).
    X  <ES> client 0 initializing ....
    X  Using implementation flat
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.
    M  tskhstart: taskhandler started
    M  tskh_init: initializing DIA work process W0
    M  tskh_init: rdisp/cleanup_after_crash = 1
    M
    M Mon Mar 17 13:26:15 2014
    M  calling db_connect ...
    C  Thread ID:3128
    C  Thank You for using the SLOLEDB-interface
    C  Using dynamic link library 'D:\usr\sap\PRD\SYS\exe\run\dbmssslib.dll'
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  CopyLocalParameters: dbuser is 'prd'
    C  Using Provider SQLNCLI
    C  OpenOledbConnection: MARS property was set successfully.
    C
    C Mon Mar 17 13:26:16 2014
    C  Provider Release:9.00.4035.00
    C  Using Provider SQLNCLI
    C  OpenOledbConnection: MARS property was set successfully.
    C
    C Mon Mar 17 13:26:22 2014
    C  Cache sizes: header 104 bytes, 20000 names (32960000 bytes), 1000 dynamic statements (5752000 bytes), total 38712104 bytes
    C  Using shared procedure name cache SAPPRDX64_PRDPRD_PRD_MEM initialized by another process.
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: prd
    C  pn_id:SAPPRDX64_PRDPRD_PRD
    C  Using MARS (on sql 9.0)
    B  Connection 0 opened (DBSL handle 0)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    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,*.png
    I
    I Mon Mar 17 13:26:26 2014
    I  MtxInit: 0 0 0
    M  SHM_PRES_BUF (addr: 0000000016320050, size: 41613000)
    M  SHM_ROLL_AREA (addr: 000007FFC4050050, size: 268435456)
    M  SHM_PAGING_AREA (addr: 0000000018AD0050, size: 134217728)
    M  SHM_ROLL_ADM (addr: 0000000020AE0050, size: 2678942)
    M  SHM_PAGING_ADM (addr: 0000000020D70050, size: 787488)
    M  ThCreateNoBuffer allocated 544152 bytes for 1000 entries at 0000000020E40050
    M  ThCreateNoBuffer index size: 3000 elems
    M  ThCreateNoBuffer: correct_btc_behaviour = 1
    M  ThCreateVBAdm allocated 12176 bytes (50 server) at 0000000020ED0050
    X  EmInit: MmSetImplementation( 2 ).
    X  <ES> client 0 initializing ....
    X  Using implementation flat
    X  ES initialized.
    B  dbntab: NTAB buffers attached
    B  dbntab: Buffer FTAB(hash header)  (addr: 0000000020F700D8, size: 584)
    B  dbntab: Buffer FTAB(anchor array) (addr: 0000000020F70320, size: 6240232)
    B  dbntab: Buffer FTAB(item array)  (addr: 0000000021563B08, size: 24960000)
    B  dbntab: Buffer FTAB(data area)    (addr: 0000000022D31708, size: 128000000)
    B  dbntab: Buffer IREC(hash header)  (addr: 000000002A7500D8, size: 584)
    B  dbntab: Buffer IREC(anchor array) (addr: 000000002A750320, size: 6240232)
    B  dbntab: Buffer IREC(item array)  (addr: 000000002AD43B08, size: 6240000)
    B  dbntab: Buffer IREC(data area)    (addr: 000000002B337208, size: 13312000)
    B  dbntab: Buffer STAB(hash header)  (addr: 000000002BFF00D8, size: 584)
    B  dbntab: Buffer STAB(anchor array) (addr: 000000002BFF0320, size: 6240232)
    B  dbntab: Buffer STAB(item array)  (addr: 000000002C5E3B08, size: 6240000)
    B  dbntab: Buffer STAB(data area)    (addr: 000000002CBD7208, size: 3072000)
    B  dbntab: Buffer TTAB(hash header)  (addr: 00000000350400D8, size: 4744)
    B  dbntab: Buffer TTAB(anchor array) (addr: 0000000035041360, size: 6240232)
    B  dbntab: Buffer TTAB(item array)  (addr: 0000000035634B48, size: 15600000)
    B  dbntab: Buffer TTAB(data area)    (addr: 00000000365154C8, size: 113880000)
    B  db_con_shm_ini:  WP_ID = 0, WP_CNT = 40, CON_ID = -1
    B  dbstat: TABSTAT buffer attached (addr: 000000002CEEEA58)
    B  dbtbxbuf: Buffer TABL  (addr: 000000003D1C0150, size: 263640000, end: 000000004CD2D510)
    B  dbtbxbuf: Buffer TABLP (addr: 000000002E780150, size: 61440000, end: 0000000032218150)
    B  dbexpbuf: Buffer EIBUF (addr: 000000004CD30158, size: 122880000, end: 0000000054260158)
    B  dbexpbuf: Buffer ESM  (addr: 0000000032230158, size: 4194304, end: 0000000032630158)
    B  dbexpbuf: Buffer CUA  (addr: 0000000054270158, size: 30720000, end: 0000000055FBC158)
    B  dbexpbuf: Buffer OTR  (addr: 0000000032640158, size: 4194304, end: 0000000032A40158)
    B  dbcalbuf: Buffer CALE  (addr: 0000000032A50050, size: 500000, end: 0000000032ACA170)
    M  rdisp/reinitialize_code_page -> 0
    M  icm/accept_remote_trace_level -> 0
    M  rdisp/no_hooks_for_sqlbreak -> 0
    M  rdisp/hold_keeps_time_slice -> 0
    M  CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    G  RelWritePermissionForShm( pLocation = 120, pEnforce = 0 )
    G  GetWritePermissionForShm( pLocation =  99, pEnforce = 1 )
    G  RelWritePermissionForShm( pLocation = 100, pEnforce = 1 )
    S  *** init spool environment
    S  TSPEVJOB updates outside critical section: event_update_nocsec = 1
    S  initialize debug system
    T  Stack direction is downwards.
    T  debug control: prepare exclude for printer trace
    T  new memory block 0000000010E29190
    S  spool kernel/ddic check: Ok
    S  using table TSP02FX for frontend printing
    S  3 spool work process(es) found
    S  frontend print via spool service enabled
    S  printer list size is 150
    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 00000000331C00C0
    S  doing lock recovery
    S  setting server cache root
    S  found spool memory service RSPO-SERVERCACHE at 00000000331C0C58
    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: 2512 bytes
    S  immediate print option for implicitely closed spool requests is disabled
    A
    A  ---PXA-------------------------------------------
    A  PXA INITIALIZATION
    A  System page size: 4kb, total admin_size: 50852kb, dir_size: 25348kb.
    A  Attached to PXA (address 000007FFD4080050, size 720000K, 2 fragments of 334576K )
    A  abap/pxa = shared protect gen_remote
    A  PXA INITIALIZATION FINISHED
    A  ---PXA-------------------------------------------
    A
    A  ABAP ShmAdm attached (addr=000007FF26F71000 leng=20955136 end=000007FF2836D000)
    A  >> Shm MMADM area (addr=000007FF2741D070 leng=246976 end=000007FF27459530)
    A  >> Shm MMDAT area (addr=000007FF2745A000 leng=15806464 end=000007FF2836D000)
    A  RFC Destination> destination clusterx64_PRD_00 host clusterx64 system PRD systnr 0 (clusterx64_PRD_00)
    A  RFC Options> H=clusterx64,S=00,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 abap/SIGCHILD_default 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 83148 bytes at 0000000033330050
    Y  dyWpInit
    Y    ztta/dynpro_ara 800000
    Y    ztta/cua_ara    360000
    Y    ztta/diag_ara  250000
    N  SsfSapSecin: putenv(SECUDIR=D:\usr\sap\PRD\DVEBMGS00\sec): ok
    N
    N  =================================================
    N  === SSF INITIALIZATION:
    N  ===...SSF Security Toolkit name SAPSECULIB .
    N  ===...SSF trace level is 0 .
    N  ===...SSF library is D:\usr\sap\PRD\SYS\exe\run\sapsecu.dll .
    N  ===...SSF hash algorithm is SHA1 .
    N  ===...SSF symmetric encryption algorithm is DES-CBC .
    N  ===...sucessfully completed.
    N  =================================================
    N  MskiInitLogonTicketCacheHandle: Logon Ticket cache pointer retrieved from shared memory.
    N  MskiInitLogonTicketCacheHandle: Workprocess runs with Logon Ticket cache.
    W  =================================================
    W  === ipl_Init() called
    B    dbtran INFO (init_connection '<DEFAULT>' [MSSQL:640.00]):
    B    max_blocking_factor =  50,  max_in_blocking_factor      = 255,
    B    min_blocking_factor =  5,  min_in_blocking_factor      =  10,
    B    prefer_union_all    =  1,  prefer_union_for_select_all =  0,
    B    prefer_fix_blocking =  0,  prefer_in_itab_opt          =  0,
    B    convert AVG        =  1,  alias table FUPD            =  0,
    B    escape_as_literal  =  0,  opt GE LE to BETWEEN        =  0,
    B    select *            =0x00,  character encoding          = STD / []:X,
    B    use_hints          = abap->1, dbif->0x1, upto->0, rule_in->0,
    B                          rule_fae->0, concat_fae->0, concat_fae_or->0,
    B    join_conforms_iso  =  1
    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: 640, [6400.0.414.20020600]
    W    ITS Plugin: Int.version, [32]
    W    ITS Plugin: Feature set: [29]
    W    ===... Calling itsp_Init in external dll ===>
    W  === ipl_Init() returns 0, ITSPE_OK: OK
    W  =================================================
    E  Enqueue Info: rdisp/wp_no_enq=1, rdisp/enqname=<empty>, assume clusterx64_PRD_00
    E  Profile-Parameter: enque/sync_dequeall = 0
    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.
    S
    S Mon Mar 17 13:26:31 2014
    S  server @>SSRV:clusterx64_PRD_00@< appears or changes (state 1)
    S  server @>SSRV:clusterx64_PRD_00@< appears or changes (state 1)
    B
    B Mon Mar 17 13:26:34 2014
    B  table logging switched off for all clients
    N
    N Mon Mar 17 13:26:44 2014
    N  login/password_change_for_SSO : 1 -> 1
    M  SecAudit(RsauShmInit): WP attached to existing shared memory.
    M  SecAudit(RsauShmInit): addr of SCSA........... = 0000000005990050
    M  SecAudit(RsauShmInit): addr of RSAUSHM........ = 00000000059907B8
    M  SecAudit(RsauShmInit): addr of RSAUSLOTINFO... = 00000000059907F0
    M  SecAudit(RsauShmInit): addr of RSAUSLOTS...... = 00000000059907FC
    M  SecAudit(check_daily_file): audit file opened D:\usr\sap\PRD\DVEBMGS00\log\20140317000001.AUD
    D
    D Mon Mar 17 13:26:51 2014
    D  GuiStatus: table test
    D  GuiStatus set generate inline  >20140317132651<
    D  GuiStatus clear generate inline  >20140317132651<
    B
    B Mon Mar 17 13:27:00 2014
    B  dbmyclu : info : my major identification is 3232240218, minor one 0.
    B  dbmyclu : info : Time Reference is 1.12.2001 00:00:00h GMT.
    B  dbmyclu : info : my uuid is C8157D392BFA064AAC992593949203BE.
    B  dbmyclu : info : current optimistic cluster level: 3
    B  dbmyclu : info : pessimistic reads set to 2.
    G
    G Mon Mar 17 13:27:03 2014
    G  GetWritePermissionForShm( pLocation = 283, pEnforce = 0 )
    G
    G Mon Mar 17 13:27:04 2014
    G  RelWritePermissionForShm( pLocation = 277, pEnforce = 0 )
    G  GetWritePermissionForShm( pLocation = 281, pEnforce = 0 )
    G  RelWritePermissionForShm( pLocation = 277, pEnforce = 0 )
    M  ThEMsgArrived: sysmsg_for_rfc = 0
    G
    G Mon Mar 17 13:27:18 2014
    G  GetWritePermissionForShm( pLocation = 281, pEnforce = 0 )
    G  RelWritePermissionForShm( pLocation = 277, pEnforce = 0 )
    A
    A Mon Mar 17 13:31:19 2014
    A  ***ATRA: session closed by other process
    D
    D Mon Mar 17 13:35:06 2014
    D  GuiStatus generation SAPLSUU5 is not running
    Y  go to separate LUW generation ===> 20140317133506
    Y    GuiStatus generate texts: SAPLSUU5 M
    Y  return from separate LUW <=== WP: 1 th_rc=0 OK
    G
    G Mon Mar 17 13:35:16 2014
    G  GetWritePermissionForShm( pLocation = 281, pEnforce = 0 )
    G  RelWritePermissionForShm( pLocation = 277, pEnforce = 0 )
    M
    M Mon Mar 17 13:40:02 2014
    M  ThIUsrDel: th_rollback_usrdelentry = 1
    A
    A Mon Mar 17 13:44:07 2014
    A  ***ATRA: session closed by other process
    B
    B Mon Mar 17 13:46:35 2014
    B  create_con (con_name=++DBO++0020)
    B  New connection 1 created
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 1 opened (DBSL handle 1)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000001 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    S
    S Mon Mar 17 13:51:33 2014
    S  found spool memory service RSPO-ACTIONS at 00000000331C9090
    D
    D Mon Mar 17 14:05:56 2014
    D  GuiStatus generation RSSTAT26 is not running
    Y  go to separate LUW generation ===> 20140317140556
    Y    GuiStatus generate: RSSTAT26 SELECT            
    Y
    Y Mon Mar 17 14:05:57 2014
    Y  return from separate LUW <=== WP: 2 th_rc=0 OK
    Y  go to separate LUW generation ===> 20140317140557
    Y    GuiStatus generate texts: RSSTAT26 E
    Y  return from separate LUW <=== WP: 1 th_rc=0 OK
    D
    D Mon Mar 17 14:06:11 2014
    D  GuiStatus generation RSSTAT50 is not running
    Y  go to separate LUW generation ===> 20140317140611
    Y    GuiStatus generate: RSSTAT50 0010              
    Y
    Y Mon Mar 17 14:06:12 2014
    Y  return from separate LUW <=== WP: 1 th_rc=0 OK
    Y  go to separate LUW generation ===> 20140317140612
    Y    GuiStatus generate texts: RSSTAT50 E
    Y  return from separate LUW <=== WP: 1 th_rc=0 OK
    Y
    Y Mon Mar 17 14:07:10 2014
    Y
    Y  ===> running separate LUW generation: 20140317140710
    Y    ===> requesting WP: 1
    Y    GuiStatus generate: SAPMSRD0 MAIN_NEW          
    D  GuiStatus generate status prog >SAPMSRD0< status >MAIN_NEW<  >20140317140710<
    D  GuiStatus set generate inline  >20140317140710<
    D  GuiStatus clear generate inline  >20140317140710<
    Y
    Y  ===> running separate LUW generation: 20140317140710
    Y    ===> requesting WP: 1
    Y    GuiStatus generate texts: SAPMSRD0 E
    D  GuiStatus generate texts prog >SAPMSRD0<  >20140317140710<
    D  GuiStatus set generate inline  >20140317140710<
    D  GuiStatus clear generate inline  >20140317140710<
    Y
    Y Mon Mar 17 14:23:12 2014
    Y
    Y  ===> running separate LUW generation: 20140317142312
    Y    ===> requesting WP: 1
    Y    GuiStatus generate: RSMSSDBPAHI 0100              
    D  GuiStatus generate status prog >RSMSSDBPAHI< status >0100<  >20140317142312<
    D  GuiStatus set generate inline  >20140317142312<
    D  GuiStatus clear generate inline  >20140317142312<
    B
    B Mon Mar 17 14:31:34 2014
    B  create_con (con_name=++DBO++0020)
    B  New connection 2 created
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      YES NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000016 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000017 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140317 143134 SAPPRDX64                  
    B
    B Mon Mar 17 14:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,17,2}
    B
    B Mon Mar 17 15:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000030 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000031 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140317 153136 SAPPRDX64                  
    B
    B Mon Mar 17 15:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,31,2}
    B
    B Mon Mar 17 16:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C
    C Mon Mar 17 16:31:37 2014
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000044 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000045 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140317 163136 SAPPRDX64                  
    B
    B Mon Mar 17 16:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,45,2}
    B
    B Mon Mar 17 17:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000058 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000059 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140317 173136 SAPPRDX64                  
    B
    B Mon Mar 17 17:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,59,2}
    B
    B Mon Mar 17 18:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000072 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000073 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140317 183136 SAPPRDX64                  
    B
    B Mon Mar 17 18:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,73,2}
    B
    B Mon Mar 17 19:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000086 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000087 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140317 193136 SAPPRDX64                  
    B
    B Mon Mar 17 19:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,87,2}
    B
    B Mon Mar 17 20:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000100 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000101 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140317 203136 SAPPRDX64                  
    B
    B Mon Mar 17 20:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,101,2}
    B
    B Mon Mar 17 21:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000116 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000117 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140317 213136 SAPPRDX64                  
    B
    B Mon Mar 17 21:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,117,2}
    B
    B Mon Mar 17 22:31:37 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000130 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000131 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140317 223137 SAPPRDX64                  
    B
    B Mon Mar 17 22:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,131,2}
    B
    B Mon Mar 17 23:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000144 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000145 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140317 233136 SAPPRDX64                  
    B
    B Mon Mar 17 23:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,145,2}
    M
    M Tue Mar 18 00:01:33 2014
    M  SecAudit(check_daily_file): audit file closed D:\usr\sap\PRD\DVEBMGS00\log\20140317000001.AUD
    M  SecAudit(check_daily_file): audit file opened D:\usr\sap\PRD\DVEBMGS00\log\20140318000001.AUD
    B
    B Tue Mar 18 00:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000158 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000159 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140318 003136 SAPPRDX64                  
    B
    B Tue Mar 18 00:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,159,2}
    B
    B Tue Mar 18 01:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000172 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000173 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140318 013136 SAPPRDX64                  
    B
    B Tue Mar 18 01:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,173,2}
    B
    B Tue Mar 18 02:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000186 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000187 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140318 023136 SAPPRDX64                  
    B
    B Tue Mar 18 02:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,187,2}
    B
    B Tue Mar 18 03:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000200 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000201 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140318 033136 SAPPRDX64                  
    B
    B Tue Mar 18 03:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,201,2}
    B
    B Tue Mar 18 04:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000214 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000215 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140318 043136 SAPPRDX64                  
    B
    B Tue Mar 18 04:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,215,2}
    B
    B Tue Mar 18 05:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000230 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000231 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140318 053136 SAPPRDX64                  
    B
    B Tue Mar 18 05:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,231,2}
    B
    B Tue Mar 18 06:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000244 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000245 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140318 063136 SAPPRDX64                  
    B
    B Tue Mar 18 06:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,245,2}
    B
    B Tue Mar 18 07:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000258 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000259 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140318 073136 SAPPRDX64                  
    B
    B Tue Mar 18 07:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,259,2}
    B
    B Tue Mar 18 08:31:41 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000272 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000273 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140318 083141 SAPPRDX64                  
    B
    B Tue Mar 18 08:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,273,2}
    C  RpcExec: line 12553. hr: 0x80004005 Communication link failure
    C  sloledb.cpp [RpcExec,line 12553]: Error/Message: (err 10054, sev 0), Communication link failure
    C  Procname: [Y3R40000001F9FG0332RSEUMODut01i1o211ns]
    C  sloledb.cpp [RpcExec,line 12553]: Error/Message: (err 10054, sev 0), TCP Provider: An existing connection was forcibly closed by the remote host.
    C  Procname: [Y3R40000001F9FG0332RSEUMODut01i1o211ns]
    C  RpcExec failed.  HR 80004005 DBSL retcode 99. proc: [Y3R40000001F9FG0332RSEUMODut01i1o211ns]
    C  Conn_i:1 selection:1 singleton:1 flag_fupd:0 use_cursor:0 chksum:1128862
    C  DbSlRead - Error 99 (dbcode 10054) on open
    C  DbSlRead - <Y3R40000001F9FG0332RSEUMODut01i1o211ns>
    C  DbSlRead - Error 99 (dbcode 10054) on fetch
    C  DbSlRead - <Y3R40000001F9FG0332RSEUMODut01i1o211ns>
    C  SET_EC p->msgno 10054 p->severity 0
    C  dbca_p->errclass set to DBSL_EC_RESTART
    B  ***LOG BYM=> severe DB error 10054    ; work process in reconnect status [dbsh#4 @ 1127] [dbsh    1127 ]
    B  ***LOG BY4=> sql error 10054  performing SEL on table RSEUMOD    [dbtrtab#5 @ 3988] [dbtrtab 3988 ]
    B  ***LOG BY0=> [10054] TCP Provider: An existing connection was forcibly closed by the remote host.
    [10054] Communication link failure [dbtrtab#5 @ 3988] [dbtrtab 3988 ]
    B  *** ERROR => missing return code handler
    abdebug#?[17989] does not handle return code 1 from dbcrtab#6[1596]
    ==> calling sap_dext to abort transaction
    [dbeh.c      84]
    C  RpcExec: line 12553. hr: 0x80004005 Communication link failure
    C  sloledb.cpp [RpcExec,line 12553]: Error/Message: (err 10054, sev 0), Communication link failure
    C  Procname: [Y3R40000001F1CN2138T100ut01i3o4ns]
    C  sloledb.cpp [RpcExec,line 12553]: Error/Message: (err 10054, sev 0), TCP Provider: An existing connection was forcibly closed by the remote host.
    C  Procname: [Y3R40000001F1CN2138T100ut01i3o4ns]
    C  RpcExec failed.  HR 80004005 DBSL retcode 99. proc: [Y3R40000001F1CN2138T100ut01i3o4ns]
    C  Conn_i:1 selection:1 singleton:1 flag_fupd:0 use_cursor:0 chksum:1112522
    C  DbSlRead - Error 99 (dbcode 10054) on open
    C  DbSlRead - <Y3R40000001F1CN2138T100ut01i3o4ns>
    C  DbSlRead - Error 99 (dbcode 10054) on fetch
    C  DbSlRead - <Y3R40000001F1CN2138T100ut01i3o4ns>
    C  SET_EC p->msgno 10054 p->severity 0
    C  dbca_p->errclass set to DBSL_EC_RESTART
    B  ***LOG BYM=> severe DB error 10054    ; work process in reconnect status [dbsh#4 @ 1127] [dbsh    1127 ]
    B  ***LOG BY4=> sql error 10054  performing SEL on table T100      [dbtrtab#5 @ 3988] [dbtrtab 3988 ]
    B  ***LOG BY0=> [10054] TCP Provider: An existing connection was forcibly closed by the remote host.
    [10054] Communication link failure [dbtrtab#5 @ 3988] [dbtrtab 3988 ]
    C  RpcExec: line 12553. hr: 0x80004005 Communication link failure
    C  sloledb.cpp [RpcExec,line 12553]: Error/Message: (err 10054, sev 0), Communication link failure
    C  Procname: [Y3R40000001F1CN2138T100ut01i3o4ns]
    C  sloledb.cpp [RpcExec,line 12553]: Error/Message: (err 10054, sev 0), TCP Provider: An existing connection was forcibly closed by the remote host.
    C  Procname: [Y3R40000001F1CN2138T100ut01i3o4ns]
    C  RpcExec failed.  HR 80004005 DBSL retcode 99. proc: [Y3R40000001F1CN2138T100ut01i3o4ns]
    C  Conn_i:1 selection:1 singleton:1 flag_fupd:0 use_cursor:0 chksum:1112522
    C  DbSlRead - Error 99 (dbcode 10054) on open
    C  DbSlRead - <Y3R40000001F1CN2138T100ut01i3o4ns>
    C  DbSlRead - Error 99 (dbcode 10054) on fetch
    C  DbSlRead - <Y3R40000001F1CN2138T100ut01i3o4ns>
    C  SET_EC p->msgno 10054 p->severity 0
    C  dbca_p->errclass set to DBSL_EC_RESTART
    B  ***LOG BYM=> severe DB error 10054    ; work process in reconnect status [dbsh#4 @ 1127] [dbsh    1127 ]
    B  ***LOG BY4=> sql error 10054  performing SEL on table T100      [dbtrtab#5 @ 3988] [dbtrtab 3988 ]
    B  ***LOG BY0=> [10054] TCP Provider: An existing connection was forcibly closed by the remote host.
    [10054] Communication link failure [dbtrtab#5 @ 3988] [dbtrtab 3988 ]
    C  TestConnection: line 7344. hr: 0x80004005 Unable to open a logical session
    C  sloledb.cpp [TestConnection,line 7344]: Error/Message: (err 10054, sev 0), Unable to open a logical session
    C  Procname: [TestConnection - no proc]
    C  sloledb.cpp [TestConnection,line 7344]: Error/Message: (err 10054, sev 0), TCP Provider: An existing connection was forcibly closed by the remote host.
    C  Procname: [TestConnection - no proc]
    C  Rollback: TestConnection(0) failed with dbcode 10054
    C  TestConnection: line 7344. hr: 0x80004005 Unable to open a logical session
    C  sloledb.cpp [TestConnection,line 7344]: Error/Message: (err 10054, sev 0), Unable to open a logical session
    C  Procname: [TestConnection - no proc]
    C  sloledb.cpp [TestConnection,line 7344]: Error/Message: (err 10054, sev 0), TCP Provider: An existing connection was forcibly closed by the remote host.
    C  Procname: [TestConnection - no proc]
    C  Rollback: TestConnection(1) failed with dbcode 10054
    C  SET_EC p->msgno 10054 p->severity 0
    C  dbca_p->errclass set to DBSL_EC_RESTART
    B  ***LOG BYM=> severe DB error 10054    ; work process in reconnect status [dbsh#4 @ 1127] [dbsh    1127 ]
    B  Reconnect state is entered by connection:
    B  000: name = R/3, con_id = 000000000, state = ACTIVE      , tx = NO , hc = NO , perm = YES,
    B      reco = YES, frco = NO , timeout = 000, con_max = 255, con_opt = 255, occ = NO
    B  hdl_error_on_commit_rollback: DB-ROLLBACK detected RECONNECT state
    M  ThShortCommit: db unusable
    B  RECONNECT: rsdb/reco_trials: 3
    B  RECONNECT: rsdb/reco_sleep_time: 5
    B  RECONNECT: rsdb/reco_sync_all_server: OFF
    B  db_con_reconnect: reconnecting to connection 0:
    B  000: name = R/3, con_id = 000000000, state = INACTIVE    , tx = NO , hc = NO , perm = YES,
    B      reco = YES, frco = NO , timeout = 000, con_max = 255, con_opt = 255, occ = NO
    B  disconnecting from connection 0 ...
    B  disconnected from connection 0
    B  opening connection 0 ...
    C  Thread ID:3128
    C  Thank You for using the SLOLEDB-interface
    C  Using dynamic link library 'D:\usr\sap\PRD\SYS\exe\run\dbmssslib.dll'
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  CopyLocalParameters: dbuser is 'prd'
    C  Using Provider SQLNCLI
    C  OpenOledbConnection: MARS property was set successfully.
    C  Provider Release:9.00.4035.00
    C  Using Provider SQLNCLI
    C  OpenOledbConnection: MARS property was set successfully.
    C  Cache sizes: header 104 bytes, 20000 names (32960000 bytes), 1000 dynamic statements (5752000 bytes), total 38712104 bytes
    C  Using shared procedure name cache SAPPRDX64_PRDPRD_PRD_MEM initialized by another process.
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: prd
    C  pn_id:SAPPRDX64_PRDPRD_PRD
    C  Using MARS (on sql 9.0)
    B  Connection 0 opened (DBSL handle 0)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140318 085133 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000279 INACTIVE    NO  NO  NO  NO  NO  003 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000273 DISCONNECTED NO  NO  NO  NO  NO  000 255 255 20140318 085133 SAPPRDX64                  
    B  successfully reconnected to connection 0
    B  ***LOG BYY=> work process left reconnect status [dblink#6 @ 732] [dblink  0732 ]
    B
    B Tue Mar 18 09:31:35 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C
    C Tue Mar 18 09:31:36 2014
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140318 085133 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000286 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000287 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140318 093135 SAPPRDX64                  
    B
    B Tue Mar 18 09:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,287,2}
    B
    B Tue Mar 18 10:31:35 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140318 085133 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000300 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000301 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140318 103135 SAPPRDX64                  
    B
    B Tue Mar 18 10:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,301,2}
    B
    B Tue Mar 18 11:31:35 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO 

    Hi All,
    We need to activate 0SR_DEFCUR currency object. I have activated the object and transported. Issue is resolved.
    Thanks to all for your kind replied.
    Regards,
    Don

Maybe you are looking for

  • Error in expdp - single schema

    Hi, We are exporting single schema using expdp command and getting following error while export in been taken: Command used: expdp impexp/********@dbname schemas=schema1 directory=DATA_PUMP_DIR dumpfile=EXPDP_schema1_PRE_231111.dmp LOGFILE=EXPDP_sche

  • Static variable error

    I know that non-static variables cannot be refrenced from a static context and I see where this error is happening but I can't figure out why. It doesn't appear that I am cross referencing static and non-static variables. import javax.swing.*; import

  • Copy/Paste of RTF text from Java to Word

    Hiya I am trying to transfer info from Java to MS-Word via the Clipboard, I have had a look and a play with the code given in the tutorial at http://java.sun.com/docs/books/tutorial/uiswing/components/generaltext.html But even thought it is implied t

  • Need help with File Sharing and iPHOTO Library sharing........

    I recently upgraded my imac and my macbook pro to Mavericks. I have some problems now. Previously using iPHOTO when running I was able to see the other computers iphoto library on the left side bar.  I was able then to access the other computers ipho

  • Very weird voltage

    Sonde(s) de Voltage Tension du CPU : 1.49V Tension Aux : 3.18V Tension +3.3V : 3.34V Tension +5V : 5.08V Tension +12V : 2.19V Tension -12V : -4.05V Tension -5V : -7.71V Enermax EG465AX-VE PFC.....MSI K8N Neo platinium. The system is really, very stab