CX_SY_NO_HANDLER

Hi experts,
I have a call to a function module in ZXRSRU01 coded below:
CASE v_var1.
  WHEN 'TEST'.
    CALL FUNCTION 'ZBW_TEST'
      EXPORTING
        I_VNAM        = I_VNAM
        I_VARTYP      = I_VARTYP
        I_IOBJNM      = I_IOBJNM
        I_S_COB_PRO   = I_S_COB_PRO
        I_S_RKB1D     = I_S_RKB1D
        I_PREIV       = I_PERIV
        I_T_VAR_RANGE = I_T_VAR_RANGE
        I_STEP        = I_STEP
      IMPORTING
        E_T_RANGE     = E_T_RANGE.
when i debug it to see how it processes, the moment i step on the CALL FUNCTION line i go to the exception handling in LRRX1U07 were the exception triggered is CX_SY_NO_HANDLER.
anyone have an idea of what the error is?  Ive treid running the FM through SE37 by filling up the import parameters manually and its working fine.
mark

The code looks good. But for the case statement i think it should be
CASE I_VNAM.
Regards, Siva

Similar Messages

  • CX_SY_NO_HANDLER Error While executing query in RSRT T-Code

    Hi Experts,
    I have created a data source extraction using function module.
    Then i have created customer exit variable, dso, infocube and all....
    my variable name is ZWBS_VAR and
            query name is WBS_VAR.
    while executing this query name I'm getting the exception CX_SY_NO_HANDLER.
    If i use WBS_VAR instead of ZWBS_VAR in when condition.. it is not showing that error.
    this is my code i have written in ZXRSRU01 include.
    DATA:it_wbs_elemt TYPE STANDARD TABLE OF /bic/awbsdsogn00,
         wa_wbs_elemt like line of it_wbs_elemt,
         L_S_RANGE TYPE RSR_T_RANGESID with header line,
         LOC_VAR_RANGE like line of i_T_VAR_RANGE,
         ZLOW TYPE C,
         LV_USER LIKE SY-UNAME,
         lv_user1 LIKE /bic/awbsdsogn00-/BIC/WBSE.
    CASE i_vnam.
    *****************************Start of Code for 'ZWBS_VAR' variable******************************
    when 'ZWBS_VAR'.
    lv_user = sy-uname.
    if lv_user CP '/BIC/WBSE'.
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
    EXPORTING
    input = lv_user
    IMPORTING
    output = lv_user1.
    CLEAR wa_wbs_elemt.
    SELECT * FROM /bic/awbsdsogn00 INTO TABLE it_wbs_elemt WHERE /BIC/WBSE = lv_user1.
    READ TABLE it_wbs_elemt INTO wa_wbs_elemt WITH KEY /BIC/WBSE = lv_user1.
    IF sy-subrc = 0.
    l_s_range-low = wa_wbs_elemt-/BIC/WBSE.
    l_s_range-sign = ' I '.
    l_s_range-opt = ' EQ'.
    APPEND l_s_range TO e_t_range.
    ENDIF.
    ENDIF.
    ENDCASE.
    IF I_STEP = 3.
    LOOP at i_t_var_range INTO loc_var_range WHERE vnam = 'ZWBS_VAR'.
    CLEAR : l_s_range.
    zlow = loc_var_range-low.
    lv_user = sy-uname.
    CALL FUNCTION 'CONVERSIOn_EXIT_ALPHA_OUTPUT'
    EXPORTING
    input = loc_var_range-low
    IMPORTING
    output = loc_var_range-low.
    IF lv_user NE loc_var_range-low.
    IF lv_user CP '/BIC/WBSE'.
    CALL FUNCTION 'RRMS_MESSAGE_HANDLING'
    EXPORTING
    I_CLASS = 'RSBBS'
    I_TYPE  = 'E'
    I_NUMBER = '000'
    I_MSGV1 = 'You are not authorized for the WBS ELEMENT'
    I_MSGV2 = loc_var_range-low
    I_MSGV3 = 'Enetr your valid WBS ELEMENT'
    I_MSGV4 = lv_user
    EXCEPTIONS
    OTHERS = 02.
    RAISE Again.
    ELSE.
    l_s_range-low = loc_var_range-low.
    l_s_range-sign = loc_var_range-sign.
    l_s_range-opt = loc_var_range-opt.
    APPEND l_s_range TO e_t_range.
    ENDIF.
    ENDIf.
    ENDLOOP.
    ENDIF.
    If you find any errors in this piece of code please let me know..
    Thanks&Regads,
    Sirisha.

    Hey think other way round .
    Filtering the report with the partner(current user executing the report) will suffice your requirement .
    Am I correct ?
    If yes then follow this simple approach .
    Create a variable(mandatory, not ready for input ) of type customer exit on partner infoobject and filter your report with this variable .
    In this way the current user executing the report can see data only related to him .
    Type the below code in cmod .
    WHEN '(give your variable name).
         DATA :lv_bp        TYPE /bi0/oibpartner,
        CHECK i_step EQ '1'.
        lv_bp = sy-uname.
        IF lv_bp IS NOT INITIAL.
          lv_bp = ( sy-uname ) .
          CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
            EXPORTING
              input  = lv_bp
            IMPORTING
              output = lv_bp.
          l_s_range-sign = 'I'.
          l_s_range-opt  = 'EQ'.
          l_s_range-low  = lv_bp .
          APPEND l_s_range TO e_t_range.
          CLEAR : l_s_range,lv_bp.
        ENDIF.
    If this approach is not flexible in ur case then let me know will change the code what u have written as I can see many errors in that .
    Also I can figure it out that the whole code is ctrl c ctrl v of that sdn document but his requirement was quite different than yours .

  • CX_SY_NO_HANDLER triggered when call FM in Transformation Routine in BI

    Hi,
    Currently we are encountering an error whereby the Exception 'CX_SY_NO_HANDLER' will be triggered whenever we call a Function Module inside a Transformation Routine in BI.
    Previously, this FM was a Custom FM, but even after changing to a standard FM this error still happens.
    The process does not even enter into the FM, but immediately jumps to a 'Try - Catch' block of standard SAP, with the message "an exception (CX_SY_NO_HANDLER) occured".
    Hence, we need to confirm:
    does SAP/BI allow calling an FM inside a Transformation Routine?
    if yes to above, how do we avoid encountering this error when calling a FM inside a Transformation Routine.
    Your help is very much appreciated.
    Thanks you.

    Yes, you can call a FM from function module.
    Make sure your import and export parameters are of same type as defined in FM when passing values to FM from transformation.
    For example:
    in function module
    xyz type i.
    transformation
    abc type char.
    CALL FUNCTION 'dsjfh'
    EXPORT
    xyz = abc.
    Regards,
    San!

  • Custom function module raises exception CX_SY_NO_HANDLER

    Hi there!
    Does any one here know what this exception is?
    CX_SY_NO_HANDLER
    It is raised when I try to call a custom function module within a rule routine in a transformation.
    I've checked the input and output parameters and they're consistent.
    Thanks in advance for any help!
    Best Regards,
    Luís Andrade.

    Siggi!!
    First of all, let me tell you that I am a great fan of yours! I have learned a great deal from your posts about function modules and extractors.
    The note you referred is not applicable in my case, since we're running sp14.
    One thing I forgot to mention was that this FM is a copy of another FM, with minor modifications. I'm going to try to create a brand-new FM and paste the code in it.
    Best Regards,
    Luís Andrade.

  • SAVE_TEXT (an exception (cx_sy_no_handler) occurred)

    Hi Abapers,
    I am facing a problem when using SAVE_TEXT inside a BADI. In debugging mode, when the program control comes on Call Function 'Save_Text' statement and I press 'F5' or 'F6', it shows me a message 'an exception (cx_sy_no_handler) occurred'.
    I think I need to write above call function statement inside 'Try-Catch'. But I am not aware which exception should be catched in the Catch statement.
    All the parameters I am passing to Save_Text are perfect. The object-id, the text to be updated, all the flags (insert / save_mode/ etc.) are correct. Actually when I execute Save_Text from SE37, its working properly.
    I hope that 'Try-Catch' approach would be required.
    Please provide solution.
    Thanks in advance.

    Hello,
           The problem is with type compatibility. Check the parameters you r passing to function module. i.e. the parmeter you r passing and the function module Input parameters should have same type.
    Regards,
    Sreeni.

  • Exception CX_SY_NO_HANDLER error

    Hi Experts,
    I have created transformation routine to create average price in the Cube for datasource 0CO_OM_CCA_8. Below is an extract of the code. when i run test, i have error "Exception CX_SY_NO_HANDLER was caught".
    Does anybody see anything wrong in this piece of code. Please let me know soon.
    DATA: ZZPRC TYPE /BIC/AZCCA_DS500-PRICECOM,
              ZZVAL TYPE I VALUE 12.
    DATA: ITAB TYPE STANDARD TABLE OF /BIC/AZCCA_DS500 WITH HEADER LINE.
        REFRESH ITAB.
        SELECT PRICECOM COSTCENTER ACTTYPE FROM /BIC/AZCCA_DS500
          INTO TABLE ITAB
        Where COSTCENTER = SOURCE_FIELDS-COSTCENTER
        and ACTTYPE = SOURCE_FIELDS-ACTTYPE
        and FISCYEAR = SOURCE_FIELDS-FISCYEAR
        and VERSION = SOURCE_FIELDS-VERSION.
        LOOP AT ITAB TRANSPORTING NO FIELDS
          WHERE PRICECOM NE 0.
          ZZPRC = ZZPRC + ITAB-PRICECOM.
        ENDLOOP.
        ZZPRC = ZZPRC / ZZVAL.    "average
        RESULT = ZZPRC.
    thanks. GRai

    I am also getting an error like this.
    "The exception 'CX_SY_NO_HANDLER' was raised, but it was not caught anywhere
    along the call hierarchy."
    What does "This is not a relevant problem" mean?
    It only happens when i load data from standard data sources (2LIS_11_VAITM etc) into DSOs or InfoCubes.

  • Exception CX_SY_NO_HANDLER

    HI,
    The following error is displayed when i call the FM BBP_OM_STRUC_GET_USER_FROM_ORG in the work flow badi.
    The following is the popup displayed:
    Exception CX_SY_NO_HANDLER triggered
    An exception with the type CX_SY_DYN_CALL_ILLEGAL_TYPE occurr
    CX_SY_NO_HANDLER              
         Interfaces
               IF_MESSAGE
               IF_SERIALIZABLE_OBJECT
         Attributes
               CX_ROOT                           16AA9A3937A9BB56E10000000A11447B
               TEXTID                            1F09B73915F6B645E10000000A11447B
               PREVIOUS                            
               KERNEL_ERRID                      UNCAUGHT_EXCEPTION
               CX_SY_NO_HANDLER                  1F09B73915F6B645E10000000A11447B
               CLASSNAME                         CX_SY_DYN_CALL_ILLEGAL_TYPE
         Methods
               GET_SOURCE_POSITION

    I am also getting an error like this.
    "The exception 'CX_SY_NO_HANDLER' was raised, but it was not caught anywhere
    along the call hierarchy."
    What does "This is not a relevant problem" mean?
    It only happens when i load data from standard data sources (2LIS_11_VAITM etc) into DSOs or InfoCubes.

  • Exception 'CX_SY_NO_HANDLER' occured while loading data from EKKO

    Hi Friends,
    An exception occurred which is explained in detail below.
    The exception, which is assigned to class 'CX_SY_NO_HANDLER', was not caught
    and
    therefore caused a runtime error.
    The reason for the exception is:
    An exception with the type CX_SY_OPEN_SQL_DB occurred, but was neither handled
    locally, nor declared in a RAISING clause
    The occurrence of the exception is closely related to the occurrence of
    a previous exception "CX_SY_OPEN_SQL_DB", which was raised in the program
    "CL_RSODSO_SEMANTIC_PACKETIZER=CP",
    specifically in line 79 of the (include) program
    "CL_RSODSO_SEMANTIC_PACKETIZER=CM002".
    The cause of the exception was:
    The database returned a value containing an error
    Can you please help?
    Best Regards,
    Deepinder

    Hi Gokhan,
    Really could not get that.
    I got that error while I load data from PSA to the DSO.
    -Deepinder

  • Exception CX_SY_NO_HANDLER triggered

    Hi All,
    What could be the reason for this exception.
    Here is my code:
    method EXTRACT_DATA .
    DATA: start_date type sy-datum,
          end_date type sy-datum,
          pos_title(40) type C,
          employee_type(1) type C,
          location(4) type C,
          pers_subarea(4) type C.
    Data:tobj1 type ref to ZPOSITION_INFORMATION.
    select single empneededby from hrp9007 into start_date
          where plvar  eq '01'
               and   istat  eq '1'
               and   begda  le sy-datum
               and   endda  ge sy-datum
               and   reqnr  eq '297006'
               and   status eq '99'.
    write start_date.
    call method tobj1->EXTRACT_DATA.
    endmethod.
    How to use debug mode and find which line am having exception with.
    Thanks and regards.
    srinivas

    Hi,
    Here are the callling FM codes:
    IF flt_val = 'BUS2203'.
        CALL FUNCTION 'BBP_PD_PO_GETDETAIL'
          EXPORTING
            i_guid    = iv_doc_guid
          IMPORTING
            e_item    = ls_e_item
          TABLES
            e_account = lt_e_account.
    I cant see what's wrong with the code.
    Graham,
    How to start the debugger? Currently, I just execute the badi and clicked at the "Debugging", am I doing the right way?
    Thanks.

  • BW Upgrade Tool

    Hi All,
    We are developing a BW Upgrade Tool. A part of which gives information about System Landscape that may be useful before or after upgrade for a Basis Consultant. Following information is obtained as a output of the tool. So could you please glance through it & tell me is this information is relevent and what more should be there?
    As I'm a BW consultant I have very little knowlege of Basis.
    System status overview 
      SAP version          640
      operating system     Windows NT
      machine type         2x Intel 801586 (Mod 2 Step 7)
      node name            SAPBL5
      SAP system id        560
      database system      ORACLE
      database name        BL5
      database host        SAPBL5
      database owner       SAPBL5
      rsyn
      IP address           172.25.8.121
      kernel release       640
      database library     OCI_920_SHARE
      kernel compiled      NT 5.0 2195 Service Pack 4 x86 MS VC++ 13.10 Aug 21 2005 23
      kernel patch level   87
      supported SAP vers.  610, 620, 630, 640
      supported database   ORACLE 8.1.7.., ORACLE 9.2.0.., ORACLE 10.1.0..
      valid OP system      Windows NT 5.0, Windows NT 5.1, Windows NT 5.2
      OP system release    5.0
      ABAP load version    1521
      CUA load version     15
      kernel kind          opt
      relinfo              valid
      hot package level    13                                                         
    Oracle 
      Oracle9i Enterprise Edition Release 9.2.0.6.0 - Production
      PL/SQL Release 9.2.0.6.0 - Production
      CORE     9.2.0.6.0     Production
      TNS for 32-bit Windows: Version 9.2.0.6.0 - Production
      NLSRTL Version 9.2.0.6.0 - Production
      disp+work information
      kernel release                640
      kernel make variant           640_REL
      DBMS client library           OCI_920_SHARE
      DBSL shared library version   640.00
      compiled on                   NT 5.0 2195 Service Pack 4 x86 MS VC++ 13.10
      compilation mode              Non-Unicode
      compile time                  Aug 21 2005 23:40:31
      update level                  0
      patch number                  87
      source id                     0.087
      supported environment
      database (SAP, table SVERS)   610
                                    620
                                    630
                                    640
      DBMS server
         ORACLE 8.1.7..
         ORACLE 9.2.0..
         ORACLE 10.1.0..
      operating system
      Windows NT 5.0
      Windows NT 5.1
      Windows NT 5.2
      disp+work patch information
      ( 0.001) Strings in Inputfields cut off (note 676835)
      ( 0.001) Block insert not stable (note 699411)
      ( 0.001) Sending the SAP logon ticket to SAPJ2EE server (note 691253)
      ( 0.001) TPDA: Exclusive DBG Session Fix (note 698737)
      ( 0.001) SNC-enabled RFC connections (type 3) to unicode systems (note 695205)
      ( 0.001) Loop where with move of C field to N field (note 699528)
      ( 0.001) Multiple instances of same subscreen and f4 ocx (note 698564)
      ( 0.001) ABAP Unit: Support for calling private fixture methods (note 690059)
      ( 0.001) Bidi printing patch collection (note 353987)
      ( 0.001) Problems while debugging a dynpro (flow logic) (note 689633)
      ( 0.001) Sending the SAP logon ticket to SAPJ2EE server (note 691253)
      ( 0.001) SQL Trace: fix error in program name filter (note 697685)
      ( 0.001) Dynamic Invoke Class Constants Defaults (note 701926)
      ( 0.001) Empty title + varying line size (note 671796)
      ( 0.001) RTM/AAB logging inside HTTP request (note 687116)
      ( 0.001) Assertions/BPs: core during RFC (note 700868)
      ( 0.001) ITS ToolBar: toggle button state, get icon name (note 673134)
      ( 0.001) Implicit default table parameters (note 700146)
      ( 0.001) Ignore HTTP-server requests during ITS-processing (note 700871)
      ( 0.001) Kernel Methods: signature of c-macros changed (note 703161)
      ( 0.001) Dynamic Invoke Abstract Inherited Implemented (note 703413)
      ( 0.002) CST patch collection 50 2003 (note 687395)
      ( 0.002) TPDA: patch collection (note 703735)
      ( 0.002) LOOP ... WHERE memory leak (note 703397)
      ( 0.002) RUNT_ILLEGAL_SWITCH during garbage collection (note 702442)
      ( 0.002) Some errors in the debugger with special fieldnames (note 704384)
      ( 0.002) CALL TRANSFORMATION exceptions (note 701467)
      ( 0.002) HTML Escaping of ICF error documents (note 626073)
      ( 0.002) HTTP/External Debugging for RFC (III) (note 668256)
      ( 0.002) JavaScript: enhance roll ability in double hash code (note 703026)
      ( 0.002) Do not enter memcpyRChk during Cache reorg. (note 447519)
      ( 0.002) Dynamic types: get_components hat non unqiue ids (note 703020)
      ( 0.002) ST: initialize result STRING (note 703615)
      ( 0.002) Open SQL: joining tables w/ and w/o client (note 703710)
      ( 0.002) Output error by WRITE (*) using conversion exits (note 677893)
      ( 0.002) Avoid invocation of garbage collector in certain cases (note 704554)
      ( 0.002) ST: Load Size (note 705269)
      ( 0.002) Allocation strategy in ABAP shared objects (note 705956)
      ( 0.003) Correction of design error in Secure Storage (note 702647)
      ( 0.003) Unjustified syntax error when SETUP, TEARDOWN (note 705308)
      ( 0.003) Incoming UTF-8 RFC use UTF-8, not non-Unicode (note 647495)
      ( 0.003) ICU shared libraries upgrade (note 519753)
      ( 0.003) Sapdext: prevent loop of rabax DYNPRO_SAPDEXT_LOOP (note 703374)
      ( 0.003) Oracle multibyte codepage: Incorrect LIKE evaluation (note 695899)
      ( 0.003) Downward compatibility of table statistics (note 707005)
      ( 0.004) Correctly adapt occu of RTTI tables (note 707619)
      ( 0.004) AAB: truncated subkey values (note 708269)
      ( 0.004) Dbbuf: avoid deadlocks in export/import buffer (note 496511)
      ( 0.004) ST: no deserialization map (note 708597)
      ( 0.004) ITS TextEdit: selection functions improved (note 669904)
      ( 0.004) ITS TextEdit: new textstream interface (note 695802)
      ( 0.005) Memory in tmpfs is not released correctly (note 706071)
      ( 0.005) CST patch collection 09 2004 (note 708621)
      ( 0.005) CCMS: agent cannot monitor standalone enqueue server (note 694057)
      ( 0.005) Wrong Fido entries (note 708789)
      ( 0.005) ST: Apply in Loop (note 710150)
      ( 0.005) ST: xml header (note 708787)
      ( 0.005) UTF-8 writer; default namespace; lang(); external options (note 709649)
      ( 0.005) IMPORT: lang key handling (note 512518)
      ( 0.005) HashTab SHO-Read MoveToFront-Heuristik (note 707891)
      ( 0.005) Avoid shortdump DEBUGGER_ILLEGAL_VALUE in abDbgDisVar (note 708356)
      ( 0.005) Making RFC calls with an empty password (note 662390)
      ( 0.005) SYSTEM_CORE_DUMPED in addIDENT (gen/scsymbc.c) (note 685625)
      ( 0.005) SHO: cloning of objects, rehash at detach (note 708843)
      ( 0.006) Print control buffer overflow (note 707500)
      ( 0.006) InitStor:  missing free (note 707929)
      ( 0.006) Free_Area/Instance (note 709558)
      ( 0.006) Shared Objects core at table update (note 712739)
      ( 0.006) BOM / XmlDecl bug (note 592857)
      ( 0.006) Max shared string size (note 592857)
      ( 0.006) Default values of exp/imp function parameters (note 712280)
      ( 0.006) RTM bugfix in get_classname (note 711420)
      ( 0.006) SM51: Allow more than 1000 patch textes altogether (note 712811)
      ( 0.006) C-Call AB_GET_COUNTRY (note 685207)
      ( 0.006) TPDA: Avoid duplicate breakpoints (note 713456)
      ( 0.006) Too many frame characters (note 671796)
      ( 0.006) Check type load time stamp (note 713492)
      ( 0.006) Prevent two short dumps in one second (note 711982)
      ( 0.006) Default values of exp/imp function parameters (2) (note 712280)
      ( 0.007) Default values of exp/imp function parameters (3) (note 712280)
      ( 0.007) RFC Patch Collection  11.2004 (note 715274)
      ( 0.007) ST: Apply in Loop, Variables (note 710150)
      ( 0.007) ST: XML Position in Exception (note 715879)
      ( 0.007) Two Phase Pbag Search (note 713493)
      ( 0.007) LOAD_PROGRAM_CLASS_MISMATCH (note 716456)
      ( 0.007) Syntax error with VERI STRUCTINFO (note 716353)
      ( 0.007) XSLT Core by interface methods (note 709857)
      ( 0.007) Clean prev user after wp restart (note 715877)
      ( 0.007) Debugging rfc after server cleanup (note 715881)
      ( 0.007) CST patch collection 12 2004 (note 716915)
      ( 0.007) CLUSTD converter (deep) / EXPORT (SAP_UINT) (note 612359)
      ( 0.007) Core dump in LOAD_PROGRAM_CLASS_MISMATCH correction (note 716456)
      ( 0.007) SYSTEM_CORE_DUMPED at ATTACH / DETACH (note 718666)
      ( 0.008) SLIN: 640 AKK problem with SYNT_EXT_INFO (note 717012)
      ( 0.008) Error in ab_HshSetDelete (note 719413)
      ( 0.008) AKK violation: Newly appearing syntax error (note 719142)
      ( 0.008) SYSTEM_CORE_DUMPED in sc_program_env (gen/scsymbc.c) (note 719139)
      ( 0.008) Fix charref parsing (note 592857)
      ( 0.008) ALEWEBDOWNLOAD in Unicode systems (note 676835)
      ( 0.008) Support the displaying of  XML Docs in the ITS (note 717380)
      ( 0.008) Open SQL: missing syntax error message texts (note 710454)
      ( 0.008) HTTPS proxy authentication in ICF (note 717995)
      ( 0.008) Diag protocol: multiple codepages (note 621992)
      ( 0.008) Codepage conversion for PDF based jobs (note 719630)
      ( 0.008) Missing dynamic Texts in GUI-Status (note 717870)
      ( 0.008) READ DATASET: Suppress conversion exception if requested (note 709832)
      ( 0.008) Userswitch Inbound-/Outbound-Scheduler (note 212742)
      ( 0.008) CCMS Monitoring Patch Collection 2004/2 (note 694057)
      ( 0.008) SCANNER_MISSING_MESSAGE (note 719396)
      ( 0.008) Unicode: Core Dump in build_initrec, Modul dbntab (note 717717)
      ( 0.008) Snc/accept_insecure_rfc=U for system-to-system calls (note 713495)
      ( 0.009) Error in ab_HshSetDelete (II) (note 719413)
      ( 0.011) Error in ab_HshSetDelete (III) (note 719413)
      ( 0.011) Scroll BCALV_TEST_LIST -> scrolls correctly (note 721384)
      ( 0.011) Userswitch Inbound-/Outbound-Scheduler (note 716263)
      ( 0.011) ST: exception information; littleEndian; tables (note 715879)
      ( 0.011) ST: exception information; littleEndian; tables (note 720364)
      ( 0.011) Exceptions in CALL SCREEN (note 720908)
      ( 0.011) TPDA: prepare fix for dynp debugging (note 719967)
      ( 0.011) RSQL: Correction for MODIFY DBTAB FROM ITAB (note 716037)
      ( 0.011) Enhancements for ITS (note 720738)
      ( 0.011) Avoid short dump LOAD_NOT_FOUND_AFTER_GEN (old timestamp) (note 615022)
      ( 0.011) Display data references in the ABAP debugger (note 721223)
      ( 0.011) remove semaphore families and reorganize all ip__libs (note 721885)
      ( 0.012) Statistics: wrong data in rfc client destination records (note 724253)
      ( 0.012) Wrong length in copy operation in func check_usobt() (note 724528)
      ( 0.012) CST patch collection 15 2004 (note 723952)
      ( 0.012) Invalid Method Call Syntax (note 722346)
      ( 0.012) Invalid Warnung For Class Type (note 722347)
      ( 0.012) Update Memory Inspector (note 684660)
      ( 0.013) Wrong length in copy operation in func check_usobt() (note 724528)
      ( 0.013) Shared Objects: data references and detach (note 722884)
      ( 0.013) Selecting a context menu entry cause session hang up (note 713598)
      ( 0.013) MOVE_TO_LIT_NOTALLOWED with READ ... TRANSPORTING (note 722778)
      ( 0.013) Fix for searchhelp showing only one result value (note 697295)
      ( 0.013) Using keys in dropdown listboxes if no value is supplied (note 717871)
      ( 0.013) ITSP: Hitlist in Unicode systems (note 676835)
      ( 0.013) ShmFreeRemoveInactiveLocks with 2 locks (note 709558)
      ( 0.013) Shared Objects - itab line reference after detach (note 721190)
      ( 0.013) HTTPS proxy authentication in ICF (II) (note 717995)
      ( 0.013) Code pages, languages and locales, packet 37 + 38 (note 447519)
      ( 0.013) Code pages, languages and locales, packet 37 + 38 (note 722638)
      ( 0.013) Ixml_stl / runt / tidy (note 592857)
      ( 0.013) Empty dynprolist does not cancel control rendering any more (note 718292)
      ( 0.013) Enhancements for ITS (note 720738)
      ( 0.013) No debug after Dynp RABAX (note 721693)
      ( 0.013) Multiple instances of same subscreen and f4 ocx (2) (note 698564)
      ( 0.014) ITS640, supporting sap-accessibility (note 676835)
      ( 0.014) XSLT: Unicode in XPath Expressions (note 613113)
      ( 0.014) Search help and focus (note 728722)
      ( 0.014) Ab_PrepareStrh with lenght 0 return not NULL (note 729435)
      ( 0.014) ITS640, Response Container removed (note 676835)
      ( 0.014) Missing print controls (note 707500)
      ( 0.014) Support of ISO Latin-1 characters for certificates (note 723016)
      ( 0.014) EVENT parameter: LIKE, TYPE LINE OF not evaluated (note 724406)
      ( 0.014) MINCHAR, MAXCHAR wrong value (note 724304)
      ( 0.014) ITS640, supporting ~http_https on/off (note 676835)
      ( 0.014) ITS640, takeover logoff/exiturl (note 676835)
      ( 0.014) C-call for printing the cover page (note 720409)
      ( 0.014) Disabling ITS disables the 'Compiling...' progress indicator (note 725617)
      ( 0.014) Grid-View dump, Alewebdownload (note 676835)
      ( 0.014) Trfo Rabax Handling corrected (note 729202)
      ( 0.014) Code pages patch packet 39 (note 447519)
      ( 0.014) Memory allocation for strings reduced (note 721876)
      ( 0.014) READ ... BINARY for SORTED TABLE with attribute key (note 725720)
      ( 0.014) Bidi printing: Corrected rightadjustment of numbers (note 618988)
      ( 0.014) ITS640,takeover command logoff/endofsession SSO (note 676835)
      ( 0.014) CX_SHM_INCONSISTENT; CL_SHM_UTILITIES (note 727142)
      ( 0.014) Prevent 0x00 in database table SNAP (note 722444)
      ( 0.014) Error if print immediately for PDF based forms (note 727914)
      ( 0.015) Correct lookup on password history (note 732038)
      ( 0.015) CCMS Monitoring Patch Collection 2004/2 (note 694057)
      ( 0.015) Core in syntax check (offset length w/ interface comp.) (note 732367)
      ( 0.015) CST patch collection 18 2004 (note 730345)
      ( 0.015) Invalid sapgui codepage (note 700448)
      ( 0.015) NO_PDF flag for ADS spool jobs (note 685576)
      ( 0.015) FxReader set_error (note 722030)
      ( 0.015) Incorrect display of list search results in RTL mode (note 729558)
      ( 0.015) Support of ISO Latin-1 characters for certificates (note 723016)
      ( 0.016) CREATE for key table with default key (note 732922)
      ( 0.016) Rebuild rspoicon.c in krn/rspo (note 724736)
      ( 0.016) Tablesharing fault in MOVE-CORRESPONDING (note 732958)
      ( 0.016) Core at INSERT into table after SORT (note 733079)
      ( 0.016) Supporting ICF-Options for ITS (note 727137)
      ( 0.016) Cl_fx_reader update (note 722030)
      ( 0.016) ITS-Plugin 640: known problems (note 676835)
      ( 0.016) Enable ticket creation for ITS WebGUI/IAC (note 720738)
      ( 0.016) Invisible focus element (note 734746)
      ( 0.016) RFC legacy MDMP callers and Unicode callees (note 722193)
      ( 0.016) Redundant moves in itab operations (note 726657)
      ( 0.016) Attach_for_update returns shared lock (note 733184)
      ( 0.016) Application server hangs on Windows 2003 waiting for semaphore (note 724212)
      ( 0.016) ITS-Plugin 640: known bugs (note 676835)
      ( 0.016) 'CLASS ... FOR TESTING + INTERFACES' (note 722346)
      ( 0.016) Avoid SYSLOG message 'PXA recovery after reboot' (note 689497)
      ( 0.017) ST: alignment for variable-read (note 735543)
      ( 0.017) IMPORT: alignment handling for old exports (note 734897)
      ( 0.017) NT: sapstartsrv prozess auto restart feature (note 729945)
      ( 0.017) IMPORT: error with ignoring structure boundaries (note 737044)
      ( 0.017) Open SQL : Allow more than eight hints (note 735360)
      ( 0.017) Event SAP_SYSTEM_START with parameters (note 681516)
      ( 0.017) Sapgui 640 and tablecontrol column selections (note 735695)
      ( 0.017) Diag trace: unknown entries (note 736592)
      ( 0.017) Debugger: Auth. problems while saving table to local file (note 729616)
      ( 0.017) RFC Patch Collection 18 2004 (note 732744)
      ( 0.017) ABAP Shared Objects: Coredump at ATTACH WRITE (note 733969)
      ( 0.017) TIME_OUT oder Coredump in C-Funktion ab_ScanBase (note 733971)
      ( 0.017) ST: variables, iXML objects (note 737174)
      ( 0.017) destroyed dynpro load (note 207817)
      ( 0.017) Japanese characters were scrambled (note 736835)
      ( 0.017) XI-Editor (note 676835)
      ( 0.017) ITS-Plugin 640: known bugs (note 676835)
      ( 0.017) Correction in session management within function (note 676835)
      ( 0.017) SCAN STRUCTURE: GROUP BY in sub query (note 363992)
      ( 0.017) Segmentation Violation in db_ntab (Makro CHECK_ACC) (note 736340)
      ( 0.018) CREATE_DATA_UNKNOWN_TYPE during XML-ABAP deserialization (note 739134)
      ( 0.018) RUNT_INTERNAL_ERROR during XML-ABAP object (note 739233)
      ( 0.018) ST: deserialization with tt:copy (note 739825)
      ( 0.018) Dynpro Compress: CONTAINER_IGNORE for Table Control set (note 738808)
      ( 0.018) Code pages, languages and locales, packet 40 + 41 (note 447519)
      ( 0.018) RFC Patch Collection 18 2004 (note 732744)
      ( 0.018) Invalid sapgui codepage (note 700448)
      ( 0.018) ERROR trace: invalid value hacurrow hwcurrow (note 651566)
      ( 0.018) IMPORT: AS400 alignment handling (note 739164)
      ( 0.018) Forward POST parameter from ITS frameset (note 737798)
      ( 0.018) Code pages patch packet 42 (note 447519)
      ( 0.018) JavaScript linux64 correct INT_FITS_IN_JSVAL (note 740973)
      ( 0.018) CST patch collection 22 2004 (note 741110)
      ( 0.018) Login/password_charset, codeversion 'D' (note 735356)
      ( 0.019) Ixml shared memory corrections (note 592857)
      ( 0.019) CCMS Agent Patch Collection 2004/3 (note 694057)
      ( 0.019) ST: ignore irrelevant whitespace (note 742507)
      ( 0.019) Code pages patch packet 40 (NT) (note 447519)
      ( 0.020) NT: Optional sequential GUID generation (note 740418)
      ( 0.020) GUI_PATCHLEVEL for app server (note 591681)
      ( 0.020) List Tree, Hyperlinks (note 742066)
      ( 0.020) List Tree, Hyperlinks (note 742066)
      ( 0.020) New HTML(B) strEnc function (note 739619)
      ( 0.020) CST patch collection 25 2004 (note 744711)
      ( 0.021) Prepare for DBPROPERTIES (pack 44) (note 447519)
      ( 0.021) Missing wrapper object of class CX_SY_NO_HANDLER (note 745804)
      ( 0.021) XML-ABAP, SAP_BASIS 610: component names with namespaces (note 745935)
      ( 0.021) Possible Core after MESSAGE string TYPE 'X' (note 746144)
      ( 0.021) XSLT: Computation of xsl:sort attributes (note 746146)
      ( 0.021) SE30: Missing trace file after measurement (note 740184)
      ( 0.021) Wrong free of memory (note 745745)
      ( 0.021) NT: sapstartsrv fix for prozess auto restart feature (note 729945)
      ( 0.021) F1 on pushbuttons (note 744822)
      ( 0.021) ICF: Shortened Session-IDs in Developer-Traces (note 745722)
      ( 0.021) CALL TRANSFORMATION Option VALUE_HANDLING (note 727549)
      ( 0.021) CST patch collection 26 2004 (note 746373)
      ( 0.021) Invalid sapgui codepage (note 700448)
      ( 0.022) Alignment checks for packed numbers (note 747695)
      ( 0.022) Illegal dynpro state after RABAX (note 747694)
      ( 0.022) AsXML: suppress static interface attributes (note 747155)
      ( 0.022) Accept Dynpro Sourceversion 37 (note 743155)
      ( 0.022) ITS Plugin 640, known problems, item 23) security, buffer overwrite (note 676835)
      ( 0.022) Screens with GOS Containers (note 747140)
      ( 0.022) Empty search help dialogs (note 747270)
      ( 0.022) Too many SPOOL* files in global directory (note 749860)
      ( 0.022) New GUID and TID algorithm (note 650280)
      ( 0.022) Code pages patch packet 43 (note 447519) (note 447519)
      ( 0.022) Fixed a tight loop in julep, calling a function with an extra (note 747700)
      ( 0.022) ERROR trace: invalid value hacurrow hwcurrow (note 651566)
      ( 0.023) LZPL OTF driver (note 750002)
      ( 0.023) Correct 132-char limitation (note 750363)
      ( 0.023) RFC: additional returncode-check for ThSendToGui (note 685609)
      ( 0.023) TABLE_LINE_NOT_EXISTING at loop on a HASHED TABLE (note 750042)
      ( 0.023) INSERT of a loop reference into a hashed table (note 749075)
      ( 0.023) Semantics of the SUM statement (note 742683)
      ( 0.023) Diag enhancements for acc support (note 750543)
      ( 0.023) ITS-Plugin 640: Known problems (note 676835)
      ( 0.024) Error in step movenametab (note 745745)
      ( 0.025) HTTP debugging: Save memory ranking to local file (note 752659)
      ( 0.025) Avoid unnecessary calls to semaphore 49 (note 752473)
      ( 0.025) Buffer overflow in OMS command buffer (note 752977)
      ( 0.025) Correct handling of empty strings (note 740987)
      ( 0.027) Open SQL : Allow more than 8 hints in SELECT (note 754728)
      ( 0.027) Full path name to 255 char for temse (note 749150)
      ( 0.027) NT: Fix for occasional 'Service not started' error during Service inst (note 142100)
      ( 0.027) Diag trace: unknown entries (note 736592)
      ( 0.027) CST patch collection 28 2004 (note 751484)
      ( 0.027) Image does not fit (note 676835)
      ( 0.027) Strings and dynpro char fields (note 618120)
      ( 0.027) Core in ab_CxTableViewColOrder (note 751754)
      ( 0.027) ITS HTML Control: protocol not added if missing (note 747962)
      ( 0.027) Ixml stlport memory hole (note 545335)
      ( 0.027) CST patch collection 30 2004 (note 755912)
      ( 0.027) Wrong output of japanese characters II (note 670069)
      ( 0.027) Empty spool list for NEW-PAGE PRINT OFF (note 750153)
      ( 0.027) ABAP List Structure Recognition (1) (note 751494)
      ( 0.027) SHO: Area-constructor at INVALIDATE, setting area-properties (note 751882)
      ( 0.028) SYSTEM_RUDI_INVALID at CREATE OBJECT o TYPE (t) (note 757122)
      ( 0.028) Wrong syntax error at INTERFACES (note 757284)
      ( 0.028) ABAP List Structure Recognition (2) (note 751494)
      ( 0.029) Missing PUBLIC addition of CLASS (note 759104)
      ( 0.029) Open SQL: problem with extended portability check (note 758763)
      ( 0.029) SYSTEM_CORE_DUMPED in ABAP generation for type aliases (note 759109)
      ( 0.029) Codepage Conversion: New flag for Bidi support (note 716200)
      ( 0.029) ITS up/download: upload of files to unicode R/3 incorrect (note 758362)
      ( 0.029) Fixed multiple HtmlPPs bug for resourceless services (note 759228)
      ( 0.029) ITS640 Known bugs Item 26 (note 676835)
      ( 0.030) Check for infinite loops in random number generator (note 759735)
      ( 0.030) ABAP-XML transformation with PARAMETERS infloops (note 746332)
      ( 0.030) Correct SQL EXPLAIN function on UNICODE systems (note 760883)
      ( 0.030) Extend Structure Buffer (note 761324)
      ( 0.030) NT: work processes don't start due to different memory layout (note 761159)
      ( 0.030) RSQL: Correction for DELETE DBTAB FROM ITAB (note 753333)
      ( 0.030) Correct focus handling on F1 help (note 761377)
      ( 0.030) Dbbuf: invalid data read from single key buffer (note 625242)
      ( 0.030) DDIC-Types used by CALL METHOD ... CALLING (note 761843)
      ( 0.030) Warning at CALL METHOD (note 761933)
      ( 0.030) UTF-8 conversion for jobdata (note 739968)
      ( 0.030) CPIC calls for usertype SYSTEM, logon timestamping (note 760414)
      ( 0.030) DB Multiconnect: Closing idle secondary connections (note 762084)
      ( 0.030) TPDA: problems with BREAK-POINT ID  (note 762431)
      ( 0.030) ABAP List Structure Recognition (3) (note 751494)
      ( 0.030) SLC length (note 759208)
      ( 0.030) Corrected namespace handling (note 762678)
      ( 0.031) Correct INT4 I/O (note 627615)
      ( 0.031) No Selectionscreen generation for classes and interfaces (note 744856)
      ( 0.031) RABAX close unused snapfile (note 763333)
      ( 0.031) Data-References and ADD-CORRESPONDING (note 761850)
      ( 0.031) Code pages, languages and locales, packet 46 + 47 (note 447519)
      ( 0.031) SHO: DetachCommit with CompletionError (note 763653)
      ( 0.031) Code pages patch packet 48 (note 447519)
      ( 0.031) Fixed broken %-escaping of multibyte strings (note 763175)
      ( 0.031) Corrected dw_gui.sl linkage on hp platform (note 763292)
      ( 0.031) Runtime error UNEXPECTED_RUDI_TYPE (note 764185)
      ( 0.031) Runtime error SYSTEM_LOAD_OF_PROGRAM_FAILED (note 764186)
      ( 0.031) Runtime error SYSTEM_SHM_AREA_DETACHED (note 764187)
      ( 0.031) Runtime error SAPSQL_WA_WRONG_ALIGNMENT (note 764184)
      ( 0.032) SHO: DetachCommitCompletion failed (Part 2) (note 763653)
      ( 0.032) SHO free on local itab (note 749082)
      ( 0.032) Corrupted report sources/textes after unicode upgrade (note 765377)
      ( 0.032) Process OTF command BM in RTL (note 353987)
      ( 0.032) Trust-Manager: Error when encrypting PSE (note 765123)
      ( 0.032) Security Audit Log: some transaction starts not audited (note 763159)
      ( 0.032) CST patch collection 34 2004 (note 764321)
      ( 0.032) ABAP List Structure Recognition (4) (note 751494)
      ( 0.032) DYN_COMP_ILLEGAL with CREATE DATA (note 766330)
      ( 0.033) Reset SPATPAR flag (note 765605)
      ( 0.033) OMS support for AS400 (note 766732)
      ( 0.033) Open-SQL: SELECT INTO CORRESPONDING FIELDS and generic type of target (note 765822)
      ( 0.033) Rfc patch collection 35 2004 (note 766807)
      ( 0.033) Url form parameter scanning without = sign (note 764903)
      ( 0.033) ITS-Plugin 640: Known/fixed problems (note 676835)
      ( 0.033) ITS TextEdit Control: Text disappears after searchhelp (note 725839)
      ( 0.033) Code pages,converters (package 49) (note 447519)
      ( 0.033) NT: Check CPU timer frequency (note 532350)
      ( 0.033) Code pages patch packet 50 (note 447519)
      ( 0.034) Error in kernel call ABAP_CALLSTACK (note 769503)
      ( 0.034) Runtime error BCD_OVERFLOW converting empty strings (note 769508)
      ( 0.034) Core dump after implicit cast by ASSIGNING (note 766876)
      ( 0.034) Performance: do not read TSP02L for RDI/OTF (note 703798)
      ( 0.034) RFC patch collection 34 2004 (note 769890)
      ( 0.034) Gui scripting: missing loop field names (note 769420)
      ( 0.034) Integrated ITS: garbled hit lists (note 770161)
      ( 0.034) CST patch collection 37 2004 (note 770183)
      ( 0.035) PRINT_LINE_COUNT_TOO_LOW during printing (note 770335)
      ( 0.035) Wrong barcode printout (1) (note 770376)
      ( 0.035) Avoid syntax errors for correct usage of PROVIDE FIELDS (note 771600)
      ( 0.035) New frontend print for SAP GUI for HTML (note 771683)
      ( 0.035) Core or runtime error during modify on projection view (note 770318)
      ( 0.035) Unicode: RFC MDMP dest. garbled code pg., symptom S9 (note 647495)
      ( 0.035) ITS_Browser_Redirect und Content-Length (note 771183)
      ( 0.035) Fix memory corruption in move nametab / dipgntab (note 745745)
      ( 0.035) CALL TRANSFORMATION Parameter INITIAL_COMPONENTS (note 771161)
      ( 0.035) Forward POST parameter from ITS frameset (note 737798)
      ( 0.035) Ixml flush / bindata (note 545335)
      ( 0.035) Code pages,converter (package 51) (note 447519)
      ( 0.035) ITS640: process sap-sesscmd=USR_ABORT like OK-Code=/NEX (note 772251)
      ( 0.035) Core or runtime error during modify on projection view (note 770318)
      ( 0.036) PRINT_LINE_COUNT_TOO_LOW during printing (note 770335)
      ( 0.036) Active tabstrip button and F4 dialogs (note 772922)
      ( 0.036) Docker size and new i-mode (note 615047)
      ( 0.036) Paging related error trace entries (note 694628)
      ( 0.036) Logon error messages show '#' instead of digit chars (note 774211)
      ( 0.036) ITS Calendar: Set Color error fixed (note 767437)
      ( 0.037) AAB breakpoints in system programs (note 774627)
      ( 0.037) Update MemoryInspector II (note 684660)
      ( 0.037) CX_INVALID_TRANSFORMATION (note 773330)
      ( 0.037) Core at customer includes (note 774829)
      ( 0.037) TABLE_LINE with offset/length specification (note 774703)
      ( 0.037) ABAP: core dump at LIKE dref->*-component (note 772941)
      ( 0.037) Failed RFC system calls causing invalid SM20 records (note 774406)
      ( 0.037) ST: deserialization of type N (note 775699)
      ( 0.037) Conversion error in HTML Gui (note 775039)
      ( 0.038) Conversion exits with string parameters (note 776990)
      ( 0.038) Core in debugger data display (note 777203)
      ( 0.038) SLIN: Core dump while collecting cross ref data (note 776596)
      ( 0.038) Start transaktion via systemfunction DYNP_OKCODE_SET (note 776496)
      ( 0.038) Perfomance Fix READ DATASET in TEXT MODE (note 775375)
      ( 0.038) Structure alignment correction: Support for BIDI (note 716200)
      ( 0.038) CST patch collection 40 2004 (note 776283)
      ( 0.038) Steploop radio/checkbutton and label left/right (note 776514)
      ( 0.038) ITS 640 Plugin, known problems, issue 29 (note 676835)
      ( 0.038) Some bugs with lists in webgui fixed (note 762968)
      ( 0.038) ITS Up/Download: UrlDecode for Context Variable obsolet (note 766313)
      ( 0.038) ITS TextEdit: readonly mode in netscape fixed (note 768063)
      ( 0.038) Tolltip texts for columntree icons (note 776561)
      ( 0.038) Known bugs ( issue no 28 ) (note 676835)
      ( 0.038) Closing dangling RFC connections used with printing (note 753080)
      ( 0.038) Introducing strwidth (note 745460)
      ( 0.038) Comparing with a LOOP reference (note 767597)
      ( 0.038) SHO: Cores in GC (note 774465)
      ( 0.038) Trigger Garbage Collection when many PCBs used (note 628303)
      ( 0.038) ABAP-PH: Missing Unicode errors in syntax-check (note 777451)
      ( 0.038) RFC legacy caller, dump on LANG=space in Unicode system. (note 722193)
      ( 0.038) Code pages,converter (package 52) (note 447519)
      ( 0.038) Problems during transport into a Unicode system (note 775114)
      ( 0.038) No Frames Print Parameter (note 777337)
      ( 0.038) List display in Debugger (note 777338)
      ( 0.038) Sapgui/theme default value (note 610274)
      ( 0.038) No initialization of parameter of DESERIALIZE_HELPER (note 777339)
      ( 0.038) Automatic confirmation of Warnings (note 778467)
      ( 0.038) RUNT_ILLEGAL_SWITCH when resetting internal tables (note 778376)
      ( 0.039) # in Asian archived print lists (note 778095)
      ( 0.039) ABAP-SY: Core for dyn. arguments > 255 chars (note 777882)
      ( 0.039) PXA: Introducing PXA_CACHE (note 746984)
      ( 0.039) RTTI DDIC output length > 255 (note 777826)
      ( 0.039) RFC Patchcollection 41 2004 (note 779720)
      ( 0.039) Dynpro: TabStrip and Scrollbar SubScreen Area with CONT_IGN (note 673831)
      ( 0.040) No implicit commit during debugging (note 778582)
      ( 0.040) RFC Patch collection 40 2004 (note 778710)
      ( 0.041) Workprocess hangs on dumping OS process information when memory is low (note 781518)
      ( 0.041) BIDI: Support for fieldwise base direction (note 779879)
      ( 0.041) Foreign key check and chectables with strings (note 780473)
      ( 0.041) ALV grid view entries are not transferred (note 777995)
      ( 0.041) Agate crash when the last line of a grid view is copied (note 775672)
      ( 0.041) ALV grid view column header is not displayed (note 775679)
      ( 0.041) ALV grid view column selection incorrect after dial (note 776587)
      ( 0.041) ALV Gridview 'PAGE UP' leads to the announcement first (note 780570)
      ( 0.041) ITS-PLUGIN: Message handling for IAC (note 779543)
      ( 0.041) Suppress short dump lists in IACs (note 779543)
      ( 0.041) ITS640: enhanced sap-sesscmd handling for webgui (note 772251)
      ( 0.042) Provide kernel functionality for VMIT (note 781997)
      ( 0.042) Rollout rabax save (note 778921)
      ( 0.042) AB_GET_TEXT_FROM_CLUSTER:handling of 50 warnings per statement (note 816246)
      ( 0.059) ABAP-SY: Recursive INCLUDE nesting for classes (note 816247)
      ( 0.059) Error CALL_FUNCTION_ILLEGAL_P_TYPE (note 611004)
      ( 0.059) Diag protocol: multiple codepages (note 621992)
      ( 0.059) Replace strtok with ucafinduca (note 498369)
      ( 0.059) DBIF_RTAB_OUT_OF_CURSORS when using ITS (note 819494)
      ( 0.060) ALV Gridview optimized column width (note 766169)
      ( 0.060) SELECTION-SCREEN INCLUDE PARAMETERS and Listboxes (note 819057)
      ( 0.060) Release independent sapevt (note 802172)
      ( 0.060) RSQL: Correction concerning queries on projection views (note 809297)
      ( 0.060) Check CI include (note 818942)
      ( 0.060) Wrong change record when deactivating initial password (note 819855)
      ( 0.060) TRANSFER to file: Don't truncate East-Asian STRINGs (note 820055)
      ( 0.061) SAAB: Short dump with the minutes announcement in TA SAAB (note 821358)
      ( 0.061) NO F6H message by no record found in TST03 (note 806588)
      ( 0.061) Javascript: adopt binding to changes in note 800346 (note 821710)
      ( 0.061) Enable -SAP- encoding (note 819976)
      ( 0.061) BIDI: Support for fieldwise base direction (note 779879)
      ( 0.061) Menu: dynamic function texts (note 821701)
      ( 0.061) Batch-Input: SYSLOG TREAD - tcode active error (note 822479)
      ( 0.061) RFC patch collection 8 2005 (note 821964)
      ( 0.061) DB Multiconnect: Workprocess restart destroys connection mapping (note 796862)
      ( 0.061) ABAP-SY: Recursive INCLUDE nesting for classes (2) (note 822698)
      ( 0.061) Correction of INF -391 error (note 806993)
      ( 0.062) New frontend print (note 821519)
      ( 0.062) RFC sends large datapackets uncompressed to the SAPGUI (note 824428)
      ( 0.062) Load balance with SNC, provide sncname (note 817854)
      ( 0.062) Menu: dynamic function texts (note 821701)
      ( 0.062) Correct abend in update task debugging (note 824772)
      ( 0.062) Shared Objects: String-Sharing (note 824261)
      ( 0.063) Sharing hash tables (note 825452)
      ( 0.063) Corrections to the Unicode interface (note 522119)
      ( 0.063) Dispatch events in IMC (note 820333)
      ( 0.063) Call transformation: writing to string impr (note 824676)
      ( 0.063) Avoid DBIF_NTAB_TABLE_NOT_FOUND during garbage collection (note 826350)
      ( 0.063) ST: standalone decl / nested call in loop (note 825516)
      ( 0.063) XSLT: Debugger / escaping in namespaces (note 825517)
      ( 0.063) Missing utf8-support in agi-default for webgui (note 825652)
      ( 0.063) Code pages patch packet 62 (note 447519)
      ( 0.063) RUAPO4.1 ~DISCONNECTONCLOSE parameter not working (note 827375)
      ( 0.063) Do no core dump, when some pointers are missing in (note 563769)
      ( 0.064) Spooler level 2 trace bug (note 827514)
      ( 0.064) RTTI lock program (note 822900)
      ( 0.064) Strcpy_sU data misaligned on ntia64 (note 826536)
      ( 0.064) Enabling MSCS support for SAPMMC (note 828432)
      ( 0.064) ITS 6.40: control name = container name for IACs (note 828800)
      ( 0.064) Correct name for tpool proxies and check sum (note 823035)
      ( 0.065) Invalid sapgui input data (note 829096)
      ( 0.065) Protect read-only fields (note 830700)
      ( 0.065) Comparing data refs created via LOOP REF INTO (note 830819)
      ( 0.065) ABAP_ASSERT in extri loop, classical debugger (note 803140)
      ( 0.065) Would core in various ABAP/Dynp situations (note 830710)
      ( 0.065) ABAP-SY: AKK violation for DATA in system include (note 826284)
      ( 0.065) ABAP-SY: Coredump for >50 warnings per statement (2) (note 816246)
      ( 0.065) READ opt. for over specified non-matching key (note 825670)
      ( 0.065) INTERFACE ... DEFFERED in class pools (note 831232)
      ( 0.065) SE30: Avoid error nr 5 for CALL TRANSACTION USING (note 170470)
      ( 0.065) RFC patch collection 12 2005 (note 831456)
      ( 0.066) Rfc Patch Collection 11 2005 (note 828000)
      ( 0.066) FX: utf-8 conv error (note 825516)
      ( 0.066) Core in dy_tx_param() (note 831528)
      ( 0.066) Diagograph(): buffer size check (note 832017)
      ( 0.066) Batch-Input: No Message 00 255 when modify the ok-code (note 833001)
      ( 0.066) PXA/ATRA Patch Collection 12/2004 (note 802791)
      ( 0.066) Search help: F4 within F4 (note 832866)
      ( 0.066) EXCP_INTERNAL_ERROR during debugging (note 833453)
      ( 0.067) ABAP GC on 32-bit platforms when more than 3.4 GB used (note 833336)
      ( 0.067) Diag enhancements for acc support (note 750543)
      ( 0.067) SYSTEM_RUDI_INVALID at ASSIGN with length (note 834179)
      ( 0.067) SHO tab sharing hash collision error (note 829508)
      ( 0.067) SHO: ABAP_ASSERT during update lock with ASSIGING (II) (note 795666)
      ( 0.067) Kernel change for hide/display gridlines and customizing (note 825864)
      ( 0.067) CCMS Monitoring Patch Collection 2005/2 (note 809007) (note 809007)
      ( 0.067) Missing syntax error messages (note 826436)
      ( 0.067) Debugger (jump to statement)' (note 834640)
      ( 0.067) Integrated ITS 6.40: disconnectonclose for IACs in int. ITS)' (note 827375)
      ( 0.067) New ABAP Debugger problems with stack navigation (note 832192)
      ( 0.068) Re-sort of OTF table in ABAP (note 353987)
      ( 0.068) Spooler: Garbage text in REALSRV field (note 835703)
      ( 0.068) Integrated ITS and sap webdispatcher (note 835762)
      ( 0.068) OpenSQL: General support for ABAP-Hints on MAXDB (note 652096)
      ( 0.068) Open SQL: dynamic LIKE and ABAP field as pattern (note 835522)
      ( 0.068) Classic Debugger: itab search & download, watchpts (note 835010)
      ( 0.068) Int. ITS 6.40: ~disconnectonclose for IACs always turned on (note 827375)
      ( 0.068) ISeries: fdopen handling fixed (note 833895)
      ( 0.069) Avoid lockwaits on table TMDIR while debugging (note 837656)
      ( 0.069) Integrated ITS, version information in HTML page (note 838549)
      ( 0.069) Searchhelp select otions, select for blanks (note 836742)
      ( 0.069) RFC logon - security bugfixes (note 830528)
      ( 0.069) Memory leak using table sharing (note 837518)
      ( 0.069) New checks for DDIC type inconsistencies (note 837077)
      ( 0.069) Update list structure recognition 2 (note 751494)
      ( 0.069) WRITE UNDER and COMMON PART (note 825434)
      ( 0.069) Code pages, converters, locales. Package 636465 (note 447519)
      ( 0.069) SORTED TABLE: Memory consumption after MOVE/IMPORT (note 834807)
      ( 0.069) Shared Objects: Multi-Attach; Get_Current_Usage (note 838683)
      ( 0.069) Clear RTM buffer after flushing (note 838305)
      ( 0.069) Core dumps during session end in rare cases (note 838305)
      ( 0.069) CST patch collection 15 2005 (note 834501)
      ( 0.069) ASCII ABAP stack programs and SCS Unicode programs in one dir (note 837731)
      ( 0.069) Actionbar entries without fastpath (note 548709)
      ( 0.069) Fixes for enhanced ASCII support on OS/390 (note 595331)
      ( 0.069) LSR list ourput IV (note 751494)
      ( 0.069) Diag protocol: multiple codepages (note 621992)
      ( 0.069) Itab component access with length specification (note 838229)
      ( 0.069) Fixes for enhanced ASCII support on OS/390 (note 595331)
      ( 0.069) Integrated ITS, problems during conversion of indication (note 831959)
      ( 0.069) Userswitch Inbound-/Outbound-Scheduler (note 716263)
      ( 0.069) Toolbar control remember scroll position (note 806313)
      ( 0.069) Shared Objects: Performance Detach_Commit (note 838596)
      ( 0.070) Revert UTC BufferSync Timestamp until R3Trans and TP (note 749911)
      ( 0.071) Patch collection - logon routine, 1/2005 (note 835038)
      ( 0.071) 16-Byte alignment in rstg_get (note 837410)
      ( 0.071) CCMS RZ20: missing green alerts (note 839672)
      ( 0.071) CCMS RZ20: missing green alerts (note 746193)
      ( 0.071) D021S get each field separately (note 687334)
      ( 0.071) SE30: Avoid error nr. 5 in case of LEAVE SCREEN (note 170470)
      ( 0.071) Performance of compare for shared internal tables (note 839691)
      ( 0.071) Fixed textedit control problem with multipart/form-data ctype (note 841196)
      ( 0.071) ICM crash in HttpPlugInWriteErrorText (note 842609)
      ( 0.072) Enable printing of arabic-indic digits (note 842887)
      ( 0.072) Core after SORT within a LOOP (note 841997)
      ( 0.072) Its-plugin: Overlap of check boxes and radio buttons (note 839070)
      ( 0.072) Usob_authvaltrc for 610/620 (note 842157)
      ( 0.072) Program groups and CFW-modules (note 821158)
      ( 0.072) Program groups and CFW-modules (note 835127)
      ( 0.072) SELECT FOR UPDATE: release locks after commit (note 843042)
      ( 0.072) Set algorithm und key length of SSF PSEs (note 836367)
      ( 0.072) Downport rnd (no effect for disp+work) (note 836008)
      ( 0.073) Template invalidation fixed (note 840220)
      ( 0.073) ITS Up/Download: its plugin error in unicode R3 (note 841263)
      ( 0.073) ITS HTML Viewer: parameters of the sapevent incorrect (note 829669)
      ( 0.073) Correct quickinfo in TC (note 842040)
      ( 0.073) CLUSTER: COMP (note 772941)
      ( 0.076) Search help in mixed mode apps (note 849476)
      ( 0.076) ITS: Empty screen after warning message (note 849337)
      ( 0.076) Toolbarbutton menu (note 848805)
      ( 0.076) Searchelp error in MASSD (note 848289)
      ( 0.076) TABLE_LINE_NOT_EXISTING with MODIFY ... WHERE (note 845378)
      ( 0.076) RFC patch collection 22 2005 (note 850305)
      ( 0.076) Performance Verification Infrastructure-I (note 803789)
      ( 0.077) Catch zero length in ST command (OTF RTL handling) (note 353987)
      ( 0.077) Spooler: CJK string not printed (note 849315)
      ( 0.077) SapSSL-Update, support for OS/400 ASCII kernels (note 772517)
      ( 0.077) ST: Loops; deserial-state; extensibility (note 849075)
      ( 0.077) Dbbuf: enhance performance of single key buffer (note 826729)
      ( 0.077) Unsharing a HASHED TABLE within a loop (note 852036)
      ( 0.077) Fix memory corruption in move-nametab (note 745745)
      ( 0.077) Position of arabian printout (note 849072)
      ( 0.077) DBIF_NTAB_TABLE_NOT_FOUND during garbage collection-II (note 826350)
      ( 0.077) Integrierter ITS, MS Office 2003 session timeout (note 846857)
      ( 0.077) XSLT/iXML: Renderer memory consumption (note 844722)
      ( 0.077) Ixml file streams (note 834242)
      ( 0.077) I18n code page package 69 (late write permission) (note 447519)
      ( 0.077) I18n code page package 67+68 (F5,UMGCCTL,noDB,L) (note 447519)
      ( 0.077) ALV Grid:F4-Help on non-editable fields enabled (note 849656)
      ( 0.077) ALV Gridview dropdown lists are unavailable (note 850272)
      ( 0.077) ALV Gridview remember scroll position (note 839170)
      ( 0.077) Trim content of modified cells (note 850100)
      ( 0.077) CST patch collection 24 2005 (note 851195)
      ( 0.078) Syslog Message for wrong tablename in READ TABLE dbtab (note 851286)
      ( 0.078) CCMS Monitoring Patch Collection 2005/3 (note 809007) (note 809007)
      ( 0.078) Additional legacy RFC dest setup info (note 722193)
      ( 0.078) PROVIDE FIELDS: fix merging of intervals (note 853666)
      ( 0.078) ITS HTML Viewer: incorrect script paths for inserted scripts (note 853051)
      ( 0.078) Memory requests and error traces (note 853608)
      ( 0.078) Ab_BtreeBlockDelete() core on linuxia64 (note 854073)
      ( 0.078) HTML Tidy: get/set option (note 843855)
      ( 0.078) DBIF_NTAB_TABLE_NOT_FOUND during garbage collection (III) (note 826350)
      ( 0.078) Avoid short dump DBIF_REPO_PART_NOT_FOUND (note 854261)
      ( 0.078) Avoid short dump DBIF_REPO_PART_NOT_FOUND (note 854261)
      ( 0.079) PRESCRIBE barcode and subscript bu (note 854502)
      ( 0.079) SORT: use new GETST_TASK_NO_ETRACE (note 193529)
      ( 0.079) Call Transformation: initial refs; core in rabax (note 854572)
      ( 0.079) iXML: namespace context; XSLT: meta tag (note 854571)
      ( 0.079) Problems with CFW modules and ABAP Stack (GC) (note 856468)
      ( 0.079) Ab_BtreeBlockDelete() core, linuxia64 (II) (note 854073)
      ( 0.079) ALV Gridview RowID was not supplied correctly (note 853062)
      ( 0.079) Problems with CFW modules and ABAP Stack (GC) (II) (note 856468)
      ( 0.080) TRMSG-Messages for CALLING method (note 857551)
      ( 0.080) Fill attribute sqlmsg in class CX_SY_NATIVE_SQL_ERROR (note 853002)
      ( 0.080) ITS Up/Down: upload of files in BIN format (note 855475)
      ( 0.080) IXML Miniparser memory consumption (note 426351)
      ( 0.080) Get transaction code from SPA (note 840798)
      ( 0.080) File handling (note 846259)
      ( 0.080) JavaScript more than 65536 lines (note 858307)
      ( 0.080) Rabax trace for section (note 858362)
      ( 0.080) Protect read-only fields (II) (note 842040)
      ( 0.080) List input and control focus (note 858331)
      ( 0.080) Trust-Manager: create PSEs with keylength > 512 bit (note 509495)
      ( 0.080) Correct call of CTL moduls in 6.40 (note 858636)
      ( 0.080) RFC patch collection 26 2005 (note 858707)
      ( 0.080) SncSetMyName() in Unicode-binaries ignores name (note 856809)
      ( 0.080) MaxLength attribute is set to -1 if the backend is Unicode (note 758007)
      ( 0.081) Integrated ITS, error message on transaction selection screen (note 859213)
      ( 0.081) Acces violation in fct. EsIGblMthSlotsPrepare (note 860031)
      ( 0.081) Update Memory Inspector IV (note 684660)
      ( 0.081) Optimization of the algorithm for generating a job log (note 104185)
      ( 0.081) RFC patch collection 27 2005 (note 860531)
      ( 0.081) PXA: avoid mutex corruption after wp restart (note 802791)
      ( 0.081) ALV Gridview Inputlen of cell could be overwritten by column (note 857074)
      ( 0.081) CST Patch Collection 28 2005 (note 860319)
      ( 0.081) In ST01 some auth.objects displayed with garbage (note 855974)
      ( 0.082) ST02: Avoid core dump at NTAB buffers detailed analysis menu (note 859067)
      ( 0.082) AvaScript repair cg for chained jumps (note 861568)
      ( 0.082) Jobs with names in other code pages do not start (note 809888)
      ( 0.082) NT: sapstartsrv detecting J2EE Safe Mode (note 860654)
      ( 0.082) CCMS Monitoring Patch Collection 2005/4 (note 809007)
      ( 0.082) IMPORT: ignore conversion length errors (note 562988)
      ( 0.082) Preloading DLLs to avoid address space fragmentation (note 853696)
      ( 0.083) Definition of SLC flag (note 851307)
      ( 0.083) Syntax warning for MODIFY with INDEX on a HASHED TABLE (note 860304)
      ( 0.083) Error message on fcode /hmusa (note 862612)
      ( 0.083) Update Listparser (note 751494)
      ( 0.083) I18n code page package 7071 (no env, 45000) (note 447519)
      ( 0.083) Garbled double byte characters (note 670069)
      ( 0.083) Dump during abaplist PDF conversion (note 864429)
      ( 0.083) SE30 User Trace (note 716340)
      ( 0.083) SE30 missing trace data in case of particular units (note 864562)
      ( 0.083) Skip unknown sapgui connect data (note 864474)
      ( 0.084) SORT: sharing after phys. sort (note 863934)
      ( 0.084) Reject system okcodes while debuging BTC or VB (note 864607)
      ( 0.084) GC and tab sharing (note 862462)
      ( 0.084) Correct handling of NAZ messages (note 836869)
      ( 0.084) ABAP-SY: Core dump for type in COMMON PART (note 859631)
      ( 0.084) HTML tidy error trace (note 426351)
      ( 0.084) RTTC: illegal type for TYPE HANDLE (note 863747)
      ( 0.084) ABAP-SY: GEN_FRAGVIEW_EMPTY when accessing empty CI (note 865759)
      ( 0.084) SE30: Assure 610/620 compatible file format (note 866355)
      ( 0.084) Cua status traces (note 865763)
      ( 0.084) Core while unsharing a HASHED TABLE in a LOOP (note 866639)
      ( 0.085) MOVE-CORRESPONDING on empty CI-Includes (note 865759)
      ( 0.085) Foreign key messages in BI log (note 867390)
      ( 0.085) Compatibility of external breakpoints (Kernel 6.40, ABAP 6.10) (note 866347)
      ( 0.085) RFC Patchcollection 30 2005 (note 866360)
      ( 0.085) Default tooltip support (note 750543)
      ( 0.085) ST:  with result IXML (note 866256)
      ( 0.085) Patch collection - logon routine, 2/2005 (note 866327)
      ( 0.085) CST Patch Collection 31 2005 (note 867690)
      ( 0.085) Np printon stack (note 864122)
      ( 0.085) AUNIT test class friends (note 852745)
      ( 0.085) Perfomance Fix READ DATASET due to string resize (note 867936)
      ( 0.085) SHO: Commit registration of transactional Areas (note 865094)
      ( 0.085) Core dump when printing RTL documents (note 868178)
      ( 0.085) No trailing blanks of last (note 867921)
      ( 0.086) Code page patch package 74 (note 447519)
      ( 0.086) ICF Patch Collection 02/2005 (note 867361)
      ( 0.086) ALV Gridview core dump in CSapITSGridviewCol (note 869120)
      ( 0.086) Fix overflow, linuxx86_64 responds pretty badly to this (note 772075)
      ( 0.086) Another occurance of the same overflow problem of the ts structure (note 772078)
      ( 0.086) Definition of cellinfo flag (note 851307)
      ( 0.086) ITS Up/Down: implementing of ITS_DIRECTORY_LIST_FILES (note 856141)
      ( 0.086) ITS TextEdit: changed text could be saved in readonly mode sources (note 868919)
      ( 0.086) NT: Traceing deadlock during signal or alarm handling (note 869790)
      ( 0.086) IXML/XSLT: ABAP class registration (note 865779)
      ( 0.086) New diag supportbits (note 866219)
      ( 0.086) IXML conversion buffer (note 866208)
      ( 0.086) RFC patch collection 32 2005 (note 868767)
      ( 0.087) IMPORT: ign cnv len errors and truncation (note 562988)
      ( 0.087) Exit in LOOP AT SCREEN would remove block stack entries (note 870294)
      ( 0.087) ALV Gridview losing single row selection during its roundtrip (note 870999)
      ( 0.087) Patch lsr list output VII (note 779879)
      ( 0.087) ITS Html Viewer: javascript error for gecko Browser in framesets (note 864381)
      ( 0.087) ITS Html Viewer: caching for all binary documents enabled (note 870373)
      ( 0.087) Enhanced SAP encoding methods (note 866020)
      ( 0.087) New SSF Signer-Resultcodes for Certificate Revocation (note 870640)
      ( 0.087) GETWA_NOT_ASSIGNED since PL 84 (note 871851)
      ( 0.087) ALV Gridview Control AGate crash due to error in put_SelectedRows2 (note 865899)
      ( 0.087) ALV Gridview kernel change for expandable/collapsible totals/subtotals (note 861326)
      ( 0.087) Core with CLASS.Type or INTF.Type for data ref in XML-ABAP (note 871774)
      ( 0.087) No runtime type check with CLEANUP INTO  (note 871407)
      dbsl patch information
      ( 0.001) Support of doublebyte character sets (note 695899)
      ( 0.006) Sizecheck for tables includes LOBs (note 713281)
      ( 0.012) MAX_INT_CNT=1000 (note 634263)
      ( 0.019) Correction of ORA-01427 in dbdd_get_size (note 739536)
      ( 0.025) Correction of internal function DbSlPing() (note 748370)
      ( 0.032) Avoid dump when reading negative numbers into type P field (note 764005)
      ( 0.039) NT: work processes don't start due to different memory layout II (note 761159)
      ( 0.055) Secondary connection with multiple NLS environment (note 808505)
      ( 0.073) Automatic reconnect after ORA-03123, ORA-03127 (note 797792)
      ( 0.079) Enable and allow rel. 6.40 for Oracle 8.1.7 (note 851551)
    brbackup 
      BR0051I BRBACKUP 6.40 (12)
      Patch   Date        Note   Text
        3   2004-01-26   700733  Support for secure copy 'scp' command
       11   2004-06-25   749041  Workaround for ORA-12158 on Tru64 Unix
      release note               680046
      kernel release             640
      patch date                 2004-07-28
      patch level                12
      make platform              NTintel
      make mode                  OCI_920_SHARE
      make date                  Sep 19 2004
    brarchive 
      BR0002I BRARCHIVE 6.40 (12)
      Patch   Date        Note   Text
         3   2004-01-26   700733   Support for secure copy 'scp' command
        11   2004-06-25   749041   Workaround for ORA-12158 on Tru64 Unix
        12   2004-07-28   759839   BRARCHIVE fails for database in mount state
      release note               680046
      kernel release             640
      patch date                 2004-07-28
      patch level                12
      make platform              NTintel
      make mode                  OCI_920_SHARE
      make date                  Sep 19 2004
    brrestore 
      BR0401I BRRESTORE 6.40 (12)
      Patch   Date        Note   Text
        3   2004-01-26   700733  Support for secure copy 'scp' command
       11   2004-06-25   749041  Workaround for ORA-12158 on Tru64 Unix
      release note               680046
      kernel release             640
      patch date                 2004-07-28
      patch level                12
      make platform              NTintel
      make mode                  OCI_920_SHARE
      make date                  Sep 19 2004
    brtools 
      BR0651I BRTOOLS 6.40 (12)
      Patch   Date        Note   Text
      release note               680046
      kernel release             640
      patch date                 2004-07-28
      patch level                12
      make platform              NTintel
      make mode                  OCI_920_SHARE
      make date                  Sep 19 2004
    brconnect 
      BR0801I BRCONNECT 6.40 (12)
      Patch   Date        Note   Text
        5   2004-03-19   719581  Delete of old records in arch.log with BRCONNECT
      release note               680046
      kernel release             640
      patch date                 2004-07-28
      patch level                12
      make platform              NTintel
      make mode                  OCI_920_SHARE
      make date                  Sep 19 2004
    sapdba
    tp  
    R3trans 
    saposcol 
    SAPOSCOL version  COLL 20.88 640 - 20.51 NT 05/07/13, 32 bit, multithreaded, Non-Unicode
    compiled at   Aug 22 2005
    systemid      560 (PC with Windows NT)
    relno         6400
    patch text    COLL 20.88 640 - 20.51 NT 05/07/13
    patchno       87
    intno         20020600
    running on    SAPBL5 Windows NT 5.0 2195 Service Pack 4 2x Intel 801586 (Mod 2 Step 7)
    saplicense  
      SAPLICENSE version information
      slic (saplicense) version     3.00
      saplicense information
      kernel release                640
      kernel make variant           640_REL
      compiled on                   NT 5.0 2195 Service Pack 4 x86 MS VC++ 13.10
      compilation mode              Non-Unicode
      compile time                  Aug 21 2005 19:38:48
      update level                  0
      patch number                  48
      source id                     0.087
      supported environment
      database (SAP, table SVERS)   610
                                    620
                                    630
                                    640
      operating system
      Windows NT 5.0
      Windows NT 5.1
      Windows NT 5.2
    Operating System 
      Parameter                  Changed on     Status    Value
    Database 
      Parameter                                      Changed on  Status  Value
      ACTIVE_INSTANCE_COUNT                          15.06.2005  A
      AQ_TM_PROCESSES                                15.06.2005  A       0
      ARCHIVE

    Dear Pallavi,
    Very useful post!
    I am looking for similar accelerators for
    Software Inventory Accelerator
    Hardware Inventory Accelerator
    Interfaces Inventory
    Customization Assessment Accelerator
    Sizing Tool
    Which helps us to come up with the relevant Bill of Matetials for every area mentioned above, and the ones which I dont know...
    Request help on such accelerators... Any clues?
    Any reply, help is highly appreciated.
    Regards
    Manish Madhav

  • Urgant problem for the updating problem  HELP

    Dear sir/miss,On 2008.12.01 one of our partner company consultant,setup an update(SAPKH50016 AND SAPKH50017) page on our production system without and test in the test system.
    Now our transaction code CV03N,CV02N,CV01N can not be used,jump out abap problems as below:
    It's already give us very big impact to our SAP system,so please tell me how to deal with it.
    "Runtime Errors MOVE_CAST_ERROR
    Exceptn CX_SY_MOVE_CAST_ERROR
    Date and Time 2008.12.02 08:23:43
    ShrtText
    A dynamic type conflict occurred during reference assignment.
    What happened?
    Error in ABAP application program.
    The current ABAP program "CL_EX_DOCUMENT_MAIN02=========CP" had to be
    terminated because one of the
    statements could not be executed.
    This is probably due to an error in the ABAP program.
    What can you do?
    Print out the error message (using the "Print" function)
    and make a note of the actions and input that caused the
    error.
    To resolve the problem, contact your SAP system administrator.
    You can use transaction ST22 (ABAP Dump Analysis) to view and administer
    termination messages, especially those beyond their normal deletion
    date.
    is especially useful if you want to keep a particular message.
    Error analysis
    An exception occurred. This exception is dealt with in more detail below
    . The exception, which is assigned to the class 'CX_SY_MOVE_CAST_ERROR', wa
    neither
    caught nor passed along using a RAISING clause, in the procedure
    "IF_EX_DOCUMENT_MAIN02~D100_BEFORE_PAI" "(METHOD)"
    Since the caller of the procedure could not have expected this exception
    to occur, the running program was terminated.
    The reason for the exception is:
    A 'CAST' operation ('?=' or 'MOVE ?TO') tried to assign an object or
    interface variable to a reference variable.
    However, the contents of the source variable do not fit in the target.
    Source type. "\CLASS=ZCL_IM_DOCUMENT_MAIN02"
    Target type: "\INTERFACE=IF_EX_DOCUMENT_MAIN02"
    How to correct the error
    If the error occurred in one of your own programs or in an SAP program
    that you modified, try to correct it yourself.
    You may able to find an interim solution to the problem
    in the SAP note system. If you have access to the note system yourself,
    use the following search criteria:
    "MOVE_CAST_ERROR" CX_SY_MOVE_CAST_ERRORC
    "CL_EX_DOCUMENT_MAIN02=========CP" or "CL_EX_DOCUMENT_MAIN02=========CM007"
    "IF_EX_DOCUMENT_MAIN02~D100_BEFORE_PAI"
    If you cannot solve the problem yourself and you wish to send
    an error message to SAP, include the following documents:
    1. A printout of the problem description (short dump)
    To obtain this, select in the current display "System->List->
    Save->Local File (unconverted)".
    2. A suitable printout of the system log
    To obtain this, call the system log through transaction SM21.
    Limit the time interval to 10 minutes before and 5 minutes
    after the short dump. In the display, then select the function
    "System->List->Save->Local File (unconverted)".
    3. If the programs are your own programs or modified SAP programs,
    supply the source code.
    To do this, select the Editor function "Further Utilities->
    Upload/Download->Download".
    4. Details regarding the conditions under which the error occurred
    or which actions and input led to the error.
    The exception must either be prevented, caught within the procedure
    "IF_EX_DOCUMENT_MAIN02~D100_BEFORE_PAI"
    "(METHOD)", or declared in the procedure's RAISING clause.
    To prevent the exception, note the following:
    System environment
    SAP Release.............. "640"
    Application server....... "ciserver"
    Network address.......... "172.31.120.37"
    Operating system......... "Linux"
    Release.................. "2.6.9-11.19AXsmp"
    Hardware type............ "x86_64"
    Character length......... 16 Bits
    Pointer length........... 64 Bits
    Work process number...... 3
    Short dump setting....... "full"
    Database server.......... "diserver"
    Database type............ "ORACLE"
    Database name............ "PRD"
    Database owner........... "SAPPRD"
    Character set............ "C"
    SAP kernel............... "640"
    Created on............... "May 22 2006 19:43:51"
    Created in............... "Linux GNU SLES-9 x86_64 cc3.3.3"
    Database version......... "OCI_920 "
    Patch level.............. "129"
    Patch text............... " "
    Supported environment....
    Database................. "ORACLE 9.2.0.., ORACLE 10.1.0.., ORACLE
    10.2.0.."
    SAP database version..... "640"
    Operating system......... "Linux 2.6"
    Memory usage.............
    Roll..................... 16192
    EM....................... 12569568
    Heap..................... 0
    Page..................... 57344
    MM Used.................. 2076240
    MM Free.................. 2111024
    SAP Release.............. "640"
    User and Transaction
    Client.............. 600
    User................ "MENGQC001"
    Language key........ "E"
    Transaction......... "CV03N "
    Program............. "CL_EX_DOCUMENT_MAIN02=========CP"
    Screen.............. "SAPLCV110 0100"
    Screen line......... 43
    Information on where terminated
    The termination occurred in the ABAP program "CL_EX_DOCUMENT_MAIN02=========CP"
    in "IF_EX_DOCUMENT_MAIN02~D100_BEFORE_PAI".
    The main program was "SAPLCV110 ".
    The termination occurred in line 134 of the source code of the (Include)
    program "CL_EX_DOCUMENT_MAIN02=========CM007"
    of the source code of program "CL_EX_DOCUMENT_MAIN02=========CM007" (when
    calling the editor 1340).
    Processing was terminated because the exception "CX_SY_MOVE_CAST_ERROR"
    occurred in the
    procedure "IF_EX_DOCUMENT_MAIN02~D100_BEFORE_PAI" "(METHOD)" but was not
    handled locally, not declared in the
    RAISING clause of the procedure.
    The procedure is in the program "CL_EX_DOCUMENT_MAIN02=========CP ". Its source
    code starts in line 1
    of the (Include) program "CL_EX_DOCUMENT_MAIN02=========CM007 ".
    ource Code Extract
    ine SourceCde
    104 CLEAR data_ref.
    105 GET REFERENCE OF OKCODE INTO data_ref.
    106 CALL METHOD <flt_cache_line>-eo_object->set_parameter(
    107 im_parmname = 'OKCODE'
    108 im_value = data_ref ).
    109
    110 CLEAR data_ref.
    111 GET REFERENCE OF DRAW INTO data_ref.
    112 CALL METHOD <flt_cache_line>-eo_object->set_parameter(
    113 im_parmname = 'DRAW'
    114 im_value = data_ref ).
    115
    116 CALL METHOD <flt_cache_line>-eo_object->evaluate
    117 IMPORTING
    118 ex_exception = exc
    119 EXCEPTIONS
    120 raise_exception = 1
    121 OTHERS = 2.
    122 IF sy-subrc = 2.
    123 MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    124 WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    125 ELSEIF sy-subrc = 1.
    126 CASE exc-exceptn_nm.
    127 WHEN 'CANCEL'.
    128 MESSAGE ID exc-msgid TYPE exc-msgty NUMBER exc-msgno
    129 WITH exc-msgv1 exc-msgv2 exc-msgv3 exc-msgv4
    130 RAISING CANCEL.
    131 ENDCASE.
    132 ENDIF.
    133 WHEN OTHERS.
    EXITINTF ?= <flt_cache_line>-OBJ.
    135 CALL METHOD EXITINTF->D100_BEFORE_PAI
    136 EXPORTING
    137 TCODE = TCODE
    138 CHANGING
    139 OKCODE = OKCODE
    140 DRAW = DRAW
    141 EXCEPTIONS
    142 CANCEL = 1.
    143 case sy-subrc.
    144 when 1.
    145 raise CANCEL.
    146 endcase.
    147 ENDCASE.
    148
    149 CALL FUNCTION 'PF_ASTAT_CLOSE'
    150 EXPORTING
    151 OPENKEY = 'S61ZFJapGHhX00002X5BGm'
    152 TYP = 'UE'.
    153 ENDLOOP.
    Contents of system fields
    Name Val.
    SY-SUBRC 0
    SY-INDEX 0
    SY-TABIX 14
    SY-DBCNT 14
    SY-FDPOS 1
    SY-LSIND 0
    SY-PAGNO 0
    SY-LINNO 1
    SY-COLNO 1
    SY-PFKEY D100DISPLAY
    SY-UCOMM BACK
    SY-TITLE Display Document: Initial Screen
    SY-MSGTY
    SY-MSGID
    SY-MSGNO 000
    SY-MSGV1
    SY-MSGV2
    SY-MSGV3
    SY-MSGV4
    Active Calls/Events
    No. Ty. Program Include Line
    Name
    3 METHOD CL_EX_DOCUMENT_MAIN02=========CP CL_EX_DOCUMENT_MAIN02=========CM007 134
    CL_EX_DOCUMENT_MAIN02=>IF_EX_DOCUMENT_MAIN02~D100_BEFORE_PAI
    2 FORM SAPLCV110 LCV110F19 124
    D100_CONSUME_EVENTS
    1 MODULE (PAI) SAPLCV110 LCV110I08 10
    D100_FCODE
    Chosen variables
    Name
    Val.
    No. 3 Ty. METHOD
    Name CL_EX_DOCUMENT_MAIN02=>IF_EX_DOCUMENT_MAIN02~D100_BEFORE_PAI
    TCODE
    CV03
    45332222222222222222
    36030000000000000000
    00000000000000000000
    00000000000000000000
    OKCODE
    BACK
    4444222222222222222222222222222222222222222222222222222222222222222222
    213B000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000
    DRAW
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    SY-MSGV1
    22222222222222222222222222222222222222222222222222
    00000000000000000000000000000000000000000000000000
    00000000000000000000000000000000000000000000000000
    00000000000000000000000000000000000000000000000000
    EXC-MSGV1
    22222222222222222222222222222222222222222222222222
    00000000000000000000000000000000000000000000000000
    00000000000000000000000000000000000000000000000000
    00000000000000000000000000000000000000000000000000
    SY-MSGV2
    22222222222222222222222222222222222222222222222222
    00000000000000000000000000000000000000000000000000
    00000000000000000000000000000000000000000000000000
    00000000000000000000000000000000000000000000000000
    EXC-MSGV2
    22222222222222222222222222222222222222222222222222
    00000000000000000000000000000000000000000000000000
    00000000000000000000000000000000000000000000000000
    00000000000000000000000000000000000000000000000000
    SY-MSGV3
    22222222222222222222222222222222222222222222222222
    00000000000000000000000000000000000000000000000000
    00000000000000000000000000000000000000000000000000
    00000000000000000000000000000000000000000000000000
    EXC-MSGV3
    22222222222222222222222222222222222222222222222222
    00000000000000000000000000000000000000000000000000
    00000000000000000000000000000000000000000000000000
    00000000000000000000000000000000000000000000000000
    SY-MSGV4
    22222222222222222222222222222222222222222222222222
    00000000000000000000000000000000000000000000000000
    00000000000000000000000000000000000000000000000000
    00000000000000000000000000000000000000000000000000
    EXC-MSGV4
    22222222222222222222222222222222222222222222222222
    00000000000000000000000000000000000000000000000000
    00000000000000000000000000000000000000000000000000
    00000000000000000000000000000000000000000000000000
    EXITINTF
    F0000000
    F0000000
    <FLT_CACHE_LINE>-OBJ
    E0001000
    E0001000
    SYST-REPID
    CL_EX_DOCUMENT_MAIN02=========CP
    4454554445444554444333333333334522222222
    3CF58F4F35D5E4FD19E02DDDDDDDDD3000000000
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    SY-REPID
    CL_EX_DOCUMENT_MAIN02=========CP
    4454554445444554444333333333334522222222
    3CF58F4F35D5E4FD19E02DDDDDDDDD3000000000
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    %_DUMMY$$
    2222
    0000
    0000
    0000
    SY-SUBRC
    0
    0000
    0000
    No. 2 Ty. FORM
    Name D100_CONSUME_EVENTS
    LF_ACT_IMP_EXISTING
    X
    5
    8
    0
    0
    %_SPACE
    2
    0
    0
    0
    SY-REPID
    SAPLCV110
    5454453332222222222222222222222222222222
    310C361100000000000000000000000000000000
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    SEEX_TRUE
    X
    5
    8
    0
    0
    LF_EXIT
    F0000000
    0000F000
    %_DUMMY$$
    2222
    0000
    0000
    0000
    GF_OI_CALLED_DISPLAY
    2
    0
    0
    0
    SYST-REPID
    SAPLCV110
    5454453332222222222222222222222222222222
    310C361100000000000000000000000000000000
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    SCREEN
    MCDOK-REFVR
    4444425445522222222222222222222222222222222222222222222222222222222222222222222222222222222222
    D34FBD2566200000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    GF_TRANSACTION
    CV03
    45332222222222222222
    36030000000000000000
    00000000000000000000
    00000000000000000000
    OK_CODE
    BACK
    4444222222222222222222222222222222222222222222222222222222222222222222
    213B000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000
    DRAW
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    CL_WB_REQUEST=>TO_IMMEDIATE_START
    PROP_STRING
    360
    6000
    8100
    BITMAP_STRETCH
    2
    0000
    2000
    SY-SUBRC
    0
    0000
    0000
    SS_CENTER
    1
    0000
    1000
    C_DMS_PHIO_MASTER_CLASS
    DMS_PCD1
    4455544322
    4D3F034100
    0000000000
    0000000000
    PROP_TABINDEX
    230
    E000
    6000
    SPACE
    2
    0
    0
    0
    LF_FCODE
    2222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000
    No. 1 Ty. MODULE (PAI)
    Name D100_FCODE
    TREEV_ITEM_CLASS_CHECKBOX
    3
    0000
    3000
    Internal notes
    The termination occurred in the function "RxMoveCastErrorObj" of the SAP
    Basis System, specifically in line 2995 of the module
    "//bas/640_REL/src/krn/runt/abmove1.c#7".
    The internal operation just processed is "CAST".
    The internal session was started at 20081202082340.
    Active Calls in SAP Kernel
    Lines of C Stack in Kernel (Structure Differs on Each Platform)
    (CTrcStack2+0x7a)0x63b29a
    (CTrcStack+0xb)0x63b8db
    (ab_rabax+0x2f02)0xa4b1e2
    (_Z18RxMoveCastErrorObj4RUDIS_PKt+0xa5)0x7b7a45
    (_Z8ab_jcastv+0x673)0x7bdec3
    (_Z8ab_extriv+0x219)0x7ab4d9
    (_Z9ab_xeventPKt+0x29a)0x8f9b4a
    (ab_dstep+0x1a7)0xa5ec77
    (dynpmcal+0x39a)0x69d84a
    (dynppai0+0x933)0x69f393
    (dynprctl+0x414)0x69e324
    (dynpen00+0x444)0x693034
    (Thdynpen00+0x2df)0x50a24f
    (TskhLoop+0x307)0x514347
    (tskhstart+0x1ae)0x522fae
    (DpMain+0x28f)0x49b1bf
    (nlsui_main+0x9)0x475159
    (main+0x2e)0x47518e
    /lib64/libc.so.6(__libc_start_main+0xa9)0x2a97124b49
    List of ABAP programs affected
    Index Ty. Program Group Date Time Size Lang.
    0 Prg SAPLCV110 0 2008.12.01 10:13:43 671744 E
    1 Prg SAPMSSYD 0 2008.12.01 02:17:53 21504 E
    2 Prg SAPFSYSCALLS 0 2003.11.06 20:52:59 7168 E
    3 Typ DRAW 0 2008.04.29 10:29:35 11264
    4 Typ DRAT 0 1999.03.10 18:52:49 3072
    5 Typ DMS_DB_DRAT 0 1999.03.10 18:36:01 3072
    6 Typ TDWS 0 2003.09.10 16:46:37 6144
    7 Typ TDWST 0 1997.05.12 16:50:34 2048
    8 Typ AENR 0 2008.11.20 14:51:32 7168
    9 Typ USR03 0 1997.05.12 16:51:23 6144
    10 Typ T024X 0 1998.02.14 10:32:35 2048
    11 Typ MCDOK 0 2004.12.08 17:17:49 28672
    12 Prg SAPLCV121 12 2008.12.01 10:09:17 152576 E
    13 Prg CL_GUI_CFW====================CP 13 2003.11.06 20:53:18 176128 E
    14 Prg CL_GUI_PROPS_CONSUMER=========CP 14 2003.11.06 20:52:43 30720 E
    15 Prg %_CCNTL 14 2003.11.06 20:52:41 16384 E
    16 Prg SAPLTHFB 16 2008.12.01 02:18:03 368640 E
    17 Prg SAPLOLEA 17 2008.12.01 02:00:50 93184 E
    18 Prg SAPLSGUI 18 2008.12.01 02:18:03 76800 E
    19 Prg SAPLSTTM 19 2006.09.21 08:17:23 86016 E
    20 Prg SAPLSBDC 20 2006.09.21 08:24:43 45056 E
    21 Prg SAPLSFES 21 2008.12.01 02:18:03 278528 E
    22 Prg SAPLSPLUGIN 22 2003.11.06 21:28:25 8192 E
    23 Prg SAPFGUICNTL 17 2003.11.06 20:57:18 24576 E
    24 Typ DMS_FRONTEND_DATA 0 2001.06.07 17:41:14 2048
    25 Typ ITDWA 0 1999.12.09 18:54:10 3072
    26 Typ DNTAB 0 2000.11.09 14:07:14 6144
    27 Typ DMS_AUDITS 0 1998.12.10 18:00:41 3072
    28 Typ DRAD 0 1999.12.01 15:17:34 4096
    29 Typ DRAZ 0 1998.04.01 02:05:08 4096
    30 Typ DRAP 0 1995.04.04 16:53:07 3072
    31 Typ DRAOZ 0 1995.04.04 16:53:05 6144
    32 Typ DRAO 0 1995.04.04 16:53:03 6144
    33 Typ TOAV0 0 1996.06.14 09:51:26 3072
    34 Typ DMS_REC_FILE 0 2006.10.12 17:53:17 8192
    35 Typ DMS_DOC_FILE 0 1999.04.21 13:22:51 12288
    36 Prg SAPLCADM 36 2003.11.06 20:53:00 14336 E
    37 Typ TDWA 0 2001.06.07 17:50:38 6144
    38 Prg SAPLCV115 38 2008.12.01 10:13:43 220160 E
    39 Prg SAPLCV118 39 2008.11.30 22:54:57 86016 E
    40 Prg SAPLCV130 40 2008.12.01 09:57:54 342016 E
    41 Prg SAPLCLO0 41 2006.09.21 11:31:12 55296 E
    42 Typ API_CHAR 0 1997.07.09 23:48:05 2048
    43 Typ API_VALI 0 1998.04.23 14:46:27 5120
    44 Typ API_KSSK 0 1996.01.29 18:00:54 3072
    45 Typ API_VALI 0 1998.04.23 14:46:27 5120
    46 Prg SAPLCLFM 46 2008.12.01 03:27:54 711680 E
    47 Typ RMCLF 0 2004.03.15 16:55:47 31744
    48 Typ RMCLKSSK 0 2001.09.18 10:03:47 5120
    49 Typ RMCLAUSP 0 2001.09.18 10:03:46 7168
    50 Typ RMCLDEL 0 1997.08.13 12:51:45 3072
    51 Typ AUSP 0 2001.09.18 10:02:23 6144
    52 Prg SAPLCLSE 52 2008.11.20 14:51:39 188416 E
    53 Prg SAPLCTMS 53 2008.12.01 03:28:16 985088 E
    54 Prg SAPLCTCV 54 2008.12.01 03:27:56 197632 E
    55 Prg SAPLCTCF 55 2008.12.01 03:27:07 20480 E
    56 Typ USR01 0 1998.02.14 15:22:01 4096
    57 Prg SAPLCLPR 57 2001.11.19 16:12:29 64512 E
    58 Typ CLPROF 0 2001.06.07 17:40:33 12288
    59 Typ RMCLPAR 0 2001.06.07 17:45:28 13312
    60 Typ AGR_USERS 0 2003.01.20 16:27:01 3072
    61 Prg SAPLCTCU 61 2008.05.18 09:34:46 189440 E
    62 Prg %_CCXTAB 53 2003.11.06 21:51:14 7168 E
    63 Typ SCXTAB_CONTROL 0 2003.11.06 20:31:00 6144
    64 Prg SAPLCUDB 64 2008.11.30 22:48:18 332800 E
    65 Prg SAPLCUD0 65 2008.12.01 09:57:54 196608 E
    66 Prg SAPLCUEV 66 2001.06.07 18:26:56 12288 E
    67 Prg SAPLSUNI 67 2008.05.18 09:44:54 151552 E
    68 Typ TFDIR 0 1998.07.29 19:49:08 3072
    69 Typ CABN 0 2001.09.18 10:02:26 12288
    70 Typ CABN 0 2001.09.18 10:02:26 12288
    71 Typ DDB_C05 0 1997.08.28 08:44:01 2048
    72 Typ DDB_C02 0 1997.07.09 23:52:49 3072
    73 Typ DDB_ITP 0 1997.08.28 08:44:01 2048
    74 Typ DDB_C07 0 1997.07.09 23:52:50 2048
    75 Prg SAPLCUTM 75 2006.09.21 11:40:39 68608 E
    76 Prg SAPLCUPM 76 2008.05.18 11:52:42 472064 E
    77 Prg SAPLSLG0 77 2003.11.06 20:53:05 64512 E
    78 Prg SAPLSBAL_SERVICE 78 2008.05.18 09:48:19 172032 E
    79 Typ BALOBJ 0 1997.08.13 13:16:25 2048
    80 Typ BALSUB 0 1997.08.13 13:16:26 2048
    81 Typ BAL_S_LFIL 0 2000.12.04 12:45:13 12288
    82 Prg SAPLSBAL 82 2008.05.18 09:48:19 327680 E
    83 Typ BAL_S_LOG 0 2000.12.04 13:04:00 7168
    84 Typ BAL_S_CONT 0 1998.11.02 09:43:07 2048
    85 Typ BAL_S_PARM 0 2000.12.04 12:45:14 3072
    86 Typ BAL_S_CLBK 0 1998.11.02 09:43:07 2048
    87 Typ BAL_S_SCNT 0 1998.11.30 15:52:33 3072
    88 Typ BAL_S_SDEF 0 2000.12.04 12:45:15 2048
    89 Prg CL_ABAP_CHAR_UTILITIES========CP 89 2004.11.12 14:02:13 14336 E
    90 Prg SAPLSYGU 90 2003.11.06 20:55:40 29696 E
    91 Prg SAPLCUXP 91 2008.12.01 10:09:15 147456 E
    92 Typ CUXP_01 0 1995.04.10 15:58:58 3072
    93 Typ T100 0 1997.08.28 09:04:45 2048
    94 Typ CUXP_02 0 1995.04.10 15:58:59 2048
    95 Typ CUXP_02 0 1995.04.10 15:58:59 2048
    96 Typ TMS_JUST 0 1995.04.10 16:02:55 2048
    97 Typ CUXP_02 0 1995.04.10 15:58:59 2048
    98 Prg SAPLCUTC 98 2003.11.11 20:31:28 89088 E
    99 Prg SAPLCUTRC 99 2008.12.01 02:26:11 87040 E
    100 Typ CTMS_01 0 1997.08.13 12:25:20 3072
    101 Typ INCL_BILD 0 1997.05.12 15:10:50 2048
    102 Typ AUSP 0 2001.09.18 10:02:23 6144
    103 Prg SAPLCCRL 103 2008.11.30 22:34:49 144384 E
    104 Typ AEOIB 0 2001.09.18 10:02:18 7168
    105 Typ TCC09 0 1999.03.17 16:24:37 2048
    106 Typ AEOI 0 2001.09.18 10:02:17 5120
    107 Prg SAPLCCCN 107 2008.11.20 14:51:39 293888 E
    108 Typ AEOIT 0 2001.09.18 10:02:18 3072
    109 Typ CCIN 0 2001.10.09 13:06:55 6144
    110 Typ CCCN_XFACE 0 2001.10.09 13:06:55 7168
    111 Prg SAPLCCBU 111 2008.11.20 14:51:39 33792 E
    112 Prg SAPLCV150 112 2008.11.20 14:51:40 144384 E
    113 Prg SAPFSPOR 0 2008.12.01 07:23:38 14336 E
    114 Prg SAPLSCNT 114 2003.11.06 20:53:04 30720 E
    115 Typ DYCBOX 0 1998.08.20 11:16:53 3072
    116 Prg SAPLSVSM 116 2006.09.21 08:56:23 29696 E
    117 Prg CL_DATAPROVIDER===============CP 117 2003.11.06 20:52:43 52224 E
    118 Typ OBJ_RECORD 0 1998.02.14 08:30:43 2048
    119 Prg SAPLSTUP 119 2006.09.21 08:34:57 75776 E
    120 Prg SAPLCNDP 120 2006.09.21 09:10:54 208896 E
    121 Prg SAPSHDTV 114 2003.11.06 20:57:23 33792 E
    122 Typ SHDTVCIU 0 1998.12.14 23:15:37 3072
    123 Typ SHDSTU 0 1998.12.14 23:15:34 2048
    124 Typ SHDSTCIU 0 1998.12.14 23:15:34 2048
    125 Typ ARFCRDATA 0 2000.11.09 14:04:16 6144
    126 Prg SAPLGRFC 126 2003.11.06 20:53:02 16384 E
    127 Typ SWCBCONT 0 2000.11.15 17:55:11 3072
    128 Typ OLE_VERBS 0 1995.04.04 16:02:20 2048
    129 Typ OLE_PA 0 1995.04.04 16:02:19 2048
    130 Prg CL_DYNAMIC_GUI_EXTENSIONS=====CP 130 2003.11.06 20:52:43 37888 E
    131 Prg CL_GUI_DATAMANAGER============CP 131 2006.09.21 09:11:48 77824 E
    132 Prg CL_EXITHANDLER================CP 132 2008.12.01 02:24:29 34816 E
    133 Prg SAPLSEXV 133 2008.12.01 02:05:16 124928 E
    134 Prg CL_BADI_FLT_DATA_TRANS_AND_DB=CP 134 2008.12.01 02:24:26 44032 E
    135 Typ SXS_ATTR 0 2001.08.20 12:23:27 4096
    136 Typ V_EXT_ACT 0 2000.11.09 14:27:05 2048
    137 Typ SXC_EXIT 0 2000.11.09 14:23:43 2048
    138 Prg CL_EX_DOCUMENT_MAIN02=========CP 138 2008.04.29 10:29:37 80896 E
    139 Prg IF_EX_DOCUMENT_MAIN02=========IP 132 2008.04.29 10:29:39 30720 E
    140 Prg %_CSXRT 138 2004.11.12 13:45:31 16384 E
    141 Prg CL_EXIT_MASTER================CP 141 2006.09.21 09:10:54 24576 E
    142 Typ SXS_MLCO 0 2000.12.04 14:59:55 2048
    143 Prg CL_EX_BADI_LAYER==============CP 143 2006.09.21 09:10:54 32768 E
    144 Prg IF_EX_BADI_LAYER==============IP 132 2006.09.21 08:51:19 9216 E
    145 Typ V_EXT_IMP 0 2003.11.06 20:40:20 3072
    146 Typ V_EXT_IMP 0 2003.11.06 20:40:20 3072
    147 Typ SXC_IMPSWH 0 2000.11.09 14:23:44 2048
    148 Prg ZCL_IM_DOCUMENT_MAIN02========CP 148 2008.12.01 14:50:50 7168 E
    149 Prg SAPLASTAT_TRIG 149 2003.11.06 20:53:00 13312 E
    150 Typ ASTAT_TYP2 0 1998.11.10 05:35:18 2048
    151 Typ ASTAT_TYP1 0 1998.11.30 15:54:16 2048
    152 Prg CX_SY_MOVE_CAST_ERROR=========CP 152 2003.11.06 20:41:23 11264 E
    153 Typ SCX_SRCPOS 0 2000.11.09 14:12:15 2048
    154 Prg CX_DYNAMIC_CHECK==============CP 154 2003.11.06 21:33:04 10240 E
    155 Prg CX_ROOT=======================CP 155 2003.11.06 21:56:05 12288 E
    156 Prg CX_NO_CHECK===================CP 156 2003.11.06 21:33:04 10240 E
    157 Prg CX_SY_NO_HANDLER==============CP 157 2003.11.06 21:33:04 10240 E
    158 Typ SYST 0 2000.12.04 14:54:51 31744
    159 Typ SFBM_XCPTN 0 2000.12.04 14:54:21 3072
    160 Prg CL_WB_REQUEST=================CP 160 2008.12.01 02:25:56 71680 E
    irectory of Application Tables
    ame Date Time Lngth
    Val.
    rogram SAPLCV110
    YST . . : : 00004608
    \0\0\0\0\x0001\0\x000E\0\0\0\0\0\0\0\0\0\0\0\0\0\x000E\0
    RAW 2008.04.29 10:29:35 00003196
    RAT . . : : 00000236
    MS_DB_DRAT . . : : 00000238
    DWS . . : : 00000268
    DWST . . : : 00000048
    ENR . . : : 00000496
    00 00000000 00000000
    SR03 . . : : 00000876
    T024X . . : : 00000074
    MCDOK 2004.12.08 17:17:49 00013650
    TDWA 2001.06.07 17:50:38 00000340
    0000
    Program CL_GUI_PROPS_CONSUMER=========CP
    EUDB . . : : 00004068
    %C002380004933B6098D9166C5E1000000AC1F7825 \0\0\0
    Program SAPLCLFM
    RMCLF . . : : 00003736
    Program SAPLCTMS
    RCTMS 2002.04.17 10:32:13 00002034
    Program SAPLCTCF
    USR01 . . : : 00000220
    Program SAPLCLPR
    RMCLPAR . . : : 00000418
    SAPPROFILE
    CLPROF . . : : 00000272
    600BMENGQC001 X X XXX
    AGR_USERS . . : : 00000164
    0000000000000
    Program SAPLSUNI
    TFDIR . . : : 00000188
    CUD0_CUSTOM_CONFIG_INITIALIZERSAPLCUD0
    Program SAPLCCRL
    AENR . . : : 00000496
    00 00000000 00000000
    AEOI . . : : 00000436
    00
    Program SAPLCCCN
    CCIN . . : : 00000600
    00 0
    Program SAPSHDTV
    SHDSTU . . : : 00000106
    SHDSTCIU . . : : 00000100
    ABAP Control Blocks (CONT)
    Index Name Fl PAR0 PAR1 PAR2 PAR3 PAR4 PAR5 PAR6 SourceCde Line
    409 DWRI 01 0042 CL_EX_DOCUMENT_MAIN02=========CM007 128
    410 WRIT 00 C026 CL_EX_DOCUMENT_MAIN02=========CM007 128
    411 PAR1 C0 0000 CL_EX_DOCUMENT_MAIN02=========CM007 128
    412 JEND A6 0000 CL_EX_DOCUMENT_MAIN02=========CM007 128
    413 DWRI 01 0043 CL_EX_DOCUMENT_MAIN02=========CM007 128
    414 WRIT 00 C027 CL_EX_DOCUMENT_MAIN02=========CM007 128
    415 PAR1 C0 0000 CL_EX_DOCUMENT_MAIN02=========CM007 128
    416 JEND A6 0000 CL_EX_DOCUMENT_MAIN02=========CM007 128
    417 FUNE 01 006E CL_EX_DOCUMENT_MAIN02=========CM007 128
    418 ENDF 00 0000 CL_EX_DOCUMENT_MAIN02=========CM007 128
    419 MESS 00 0000 CL_EX_DOCUMENT_MAIN02=========CM007 128
    420 BRAX 00 0015 CL_EX_DOCUMENT_MAIN02=========CM007 133
    CAST 00 0000 C006 C028 CL_EX_DOCUMENT_MAIN02=========CM007 134
    423 METH 03 0003 0000 8001 0000 0000 0000 0000 CL_EX_DOCUMENT_MAIN02=========CM007 135
    427 PAR1 01 C000 CL_EX_DOCUMENT_MAIN02=========CM007 135
    428 PAR1 81 C001 CL_EX_DOCUMENT_MAIN02=========CM007 135
    429 PAR1 81 C002 CL_EX_DOCUMENT_MAIN02=========CM007 135
    430 PAR2 00 0000 0002 0000 CL_EX_DOCUMENT_MAIN02=========CM007 135
    432 PAR2 00 0000 006E 0001 CL_EX_DOCUMENT_MAIN02=========CM007 135
    434 BREL 04 0000 CL_EX_DOCUMENT_MAIN02=========CM007 143

    Hi,
    As per your query, pls contact any abap consultant regarding this he will provide the solution. Because some times programe given some error then the abaper see the programe and take action accordingly.
    Anil

  • Runtime error

    HI all.....
    please look at this runtime error...... help me to solve this....
    Table name:- ZRDSSTOCK.
    Data class:- APPL1.
    Size category:- 5.
    Buffering not allowed .
    Runtime Errors         DBIF_RSQL_SQL_ERROR
    Exception              CX_SY_OPEN_SQL_DB
           Occurred on     26.11.2007 at 12:38:44
    An SQL error occurred when accessing a table.
    What happened?
    What can you do?
    Make a note of the actions and input which caused the error.
    To resolve the problem, contact your SAP system administrator.
    You can use transaction ST22 (ABAP Dump Analysis) to view and administer
    termination messages, especially those beyond their normal deletion
    date.
    Error analysis
    An exception occurred. This exception is dealt with in more detail below
    . The exception, which is assigned to the class 'CX_SY_OPEN_SQL_DB', was
    neither
    caught nor passed along using a RAISING clause, in the procedure "SAVE_DATA"
    "(FORM)"
    Since the caller of the procedure could not have expected this exception
    to occur, the running program was terminated.
    The reason for the exception is:
    How to correct the error
    The exception must either be prevented, caught within the procedure "SAVE_DATA"
    "(FORM)", or declared in the procedure's RAISING clause.
    To prevent the exception, note the following:
    Database error text........: "ORA-01654: unable to extend index
    SAPPRD.ZRDSSTOCK~0 by 128 in tablespace PSAPPRDUSR"
    Internal call code.........: "[RSQL/INSR/ZRDSSTOCK ]"
    Please check the entries in the system log (Transaction SM21).
    You may able to find an interim solution to the problem
    in the SAP note system. If you have access to the note system yourself,
    use the following search criteria:
    "DBIF_RSQL_SQL_ERROR" CX_SY_OPEN_SQL_DBC
    "YKSD010 " or "YKSD010 "
    "SAVE_DATA"
    If you cannot solve the problem yourself, please send the
    following documents to SAP:
    1. A hard copy print describing the problem.
       To obtain this, select the "Print" function on the current screen.
    2. A suitable hardcopy prinout of the system log.
       To obtain this, call the system log with Transaction SM21
       and select the "Print" function to print out the relevant
       part.
    3. If the programs are your own programs or modified SAP programs,
       supply the source code.
       To do this, you can either use the "PRINT" command in the editor or
       print the programs using the report RSINCL00.
    4. Details regarding the conditions under which the error occurred
       or which actions and input led to the error.
    System environment
    SAP Release.............. "620"
    Application server....... "venus"
    Network address.......... "192.168.1.151"
    Operating system......... "SunOS"
    Release.................. "5.9"
    Hardware type............ "sun4u"
    Character length......... 8 Bits
    Pointer length........... 64 Bits
    Work process number...... 1
    Short dump setting....... "full"
    Database server.......... "venus"
    Database type............ "ORACLE"
    Database name............ "PRD"
    Database owner........... "SAPPRD"
    Character set............ "en_US"
    SAP kernel............... "620"
    Created on............... "Nov 17 2004 01:43:57"
    Created in............... "SunOS 5.8 Generic_108528-07 sun4u"
    Database version......... "OCI_817_64 "
    Patch level.............. "1732"
    Patch text............... " "
    Supported environment....
    Database................. "ORACLE 8.1.7.."
    SAP database version..... "620"
    Operating system......... "SunOS 5.8, SunOS 5.9"
    User, transaction...
    Client.............. 400
    User................ "MMUSER"
    Language key........ "E"
    Transaction......... "ZRDSEN "
    Program............. "YKSD010 "
    Screen.............. "YKSD010 0100"
    Screen line......... 41
    Information on where termination occurred
    The termination occurred in the ABAP program "YKSD010 " in "SAVE_DATA".
    The main program was "YKSD010 ".
    The termination occurred in line 685 of the source code of the (Include)
    program "YKSD010 "
    of the source code of program "YKSD010 " (when calling the editor 6850).
    Processing was terminated because the exception "CX_SY_OPEN_SQL_DB" occurred in
    the
    procedure "SAVE_DATA" "(FORM)" but was not handled locally, not declared in the
    RAISING clause of the procedure.
    The procedure is in the program "YKSD010 ". Its source code starts in line 662
    of the (Include) program "YKSD010 ".
    Source code extract
    006550
    006560
    006570   *&----
    006580   *&      Form  save_data
    006590   *&----
    006600   *       text
    006610   *----
    006620   FORM SAVE_DATA.
    006630   data: begin of lv_test occurs 0,
    006640         werks type s886-werks,
    006650         pkunag type s886-pkunag,
    006660         end of lv_test.
    006670     LOOP AT INDT1.
    006680
    006690       INDT1-WERKS = WERKS.
    006700       INDT1-DAT1 = VDFRM.
    006710       INDT1-DAT2 = VLDTO.
    006720   *    indt1-kunnr = kunnr.
    006730
    006740
    006750       MODIFY INDT1.
    006760
    006770     ENDLOOP.
    006780   *if indt1 is not initial.
    006790   *select  pkunag werks from  s886 into corresponding fields of  table
    006800   *lv_test where pkunag = indt1-rdscode and werks = indt1-werks.
    006810   *if sy-subrc = 0.
    006820
    006830   &----
    changed by prajwal.k----
    006840
        INSERT ZRDSSTOCK FROM TABLE INDT1 ACCEPTING DUPLICATE KEYS.
    006860   *loop at indt1.
    006870   *  INSERT ZRDSSTOCK FROM INDT1.
    006880   *if sy-subrc <> 0.
    006890   *message w013 WITH INDT1-MATNR.
    006900   *endif.
    006910   *endloop.
    006920
    006930
    006940   &----
    end----
    006950   *        MESSAGE I004.
    006960   *else.
    006970   *message 'Please chek the RDS Code' type 'W'.
    006980   *endif.
    006990   *endif.
    007000   *endif.
    007010     LOOP AT INDT1.
    007020
    007030       AT LAST.
    007040
    Contents of system fields
    SY field contents..................... SY field contents.....................
    SY-SUBRC 0                             SY-INDEX 0
    SY-TABIX 0                             SY-DBCNT 1
    SY-FDPOS 40                            SY-LSIND 0
    SY-PAGNO 0                             SY-LINNO 1
    SY-COLNO 1                             SY-PFKEY YINDENT
    SY-UCOMM OPT1                          SY-TITLE RDS Stock Entry Screen
    SY-MSGTY                               SY-MSGID
    SY-MSGNO 000                           SY-MSGV1
    SY-MSGV2                               SY-MSGV3
    SY-MSGV4
    Active calls / events
    No.... Type........ Name..........................
           Program
           Include                                  Line
           Class
         3 FORM         SAVE_DATA
           YKSD010
           YKSD010                                    685
         2 MODULE (PAI) YINDENT_IN
           YKSD010
           YKSD010                                    233
         1 EVENT        START-OF-SELECTION
           YKSD010
           YKSD010                                    181
    Chosen variables
         3 FORM         SAVE_DATA
           YKSD010
           YKSD010                                    685
    INDT1[]                        Table IT_121[1738x121]
                                   FFFF94120000000000020007000C00070000FFFF
                                   FFFE7BD00000000000060009006A00090000FFFF
    ... +  40
                                   00000005012B0000
                                   40000058004C0000
    INDT1                          TNV0024   2007090120070930CH01C0100300
                                   5453333222333333333333333344334333333322
                                   4E60024000200709012007093038013010030000
    ... +  40                              CAR####`#################`######
                                   2222222244500006000000000000000006000000
                                   0000000031200000C00000C00000C00000C00000
    ... +  80                      #
                                   0222222222222222222222222222222222222222
                                   C000000000000000000000000000000000000000
    ... + 120
                                   2
                                   0
    SY                             ###############Ê########################
                                   000000000000000C000000000000000000000000
                                   000000000000006A000000000000000000000000
    ... +  40                      #######(###############################y
                                   0000000200000000000000000000000000000007
                                   0001000800010000000100000000000000000009
    ... +  80                      ########################################
                                   0000000000000000000900000000000000000000
                                   0000000000000000001000000000000000000000
    ... + 120                      ########################################
                                   0000000000000000000000000000000000010009
                                   00000000000000000000000000000000000B0000
    ... + 160                      #######ÿ######MX C#############   E0   0
                                   0000000F00000045240000000000000222432223
                                   0000000F000000D8030010000C0000C000500000
    ... + 200                      100         ####__S                 400
                                   3332222222220000555222222222222222223332
                                   1000000000000000FF3000000000000000004000
    ... + 240                           00
                                   222223322222222
                                   000000000000000
    MODIFY-CX                    ########MODIFY
                                   0000000044444522222222222222222222222222
                                   00020000DF496900000000000000000000000000
    ... +  40
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  80
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120                                          0101####
                                   222222222222222222223333000022222222
                                   000000000000000000000101000100000000
    <%_L005>-SEL                   ???
    OK_CODE                        SAVE
                                   5454222222222222222222222222222222222222
                                   3165000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    <%_TABLE_ZRDSSTOCK>            ???
    %_DUMMY$$
                                   2222
                                   0000
    VLDTO                          20070930
                                   33333333
                                   20070930
    SY-REPID                       YKSD010
                                   5454333222222222222222222222222222222222
                                   9B34010000000000000000000000000000000000
    SY-MSGID
                                   22222222222222222222
                                   00000000000000000000
    SPACE
                                   2
                                   0
    SY-MSGNO                       000
                                   333
                                   000
         2 MODULE (PAI) YINDENT_IN
           YKSD010
           YKSD010                                    233
    SY-UCOMM                       OPT1
                                   4553222222222222222222222222222222222222
                                   F041000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    COUNT                          ########
                                   00000000
                                   0000000C
    %_VLDTO_%_APP_%                Valid To
                                   566662562222222222222222222222
                                   61C9404F0000000000000000000000
    %_WERKS_%_APP_%                Plant
                                   566672222222222222222222222222
                                   0C1E40000000000000000000000000
    %_VDFRM_%_APP_%                Valid From
                                   566662476622222222222222222222
                                   61C94062FD00000000000000000000
    %B001000_BLOCK_1000            Enter Values
                                   4676725667672222222222222222222222222222
                                   5E452061C5530000000000000000000000000000
    ... +  40
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  80
                                   222
                                   000
    VALUE
                                   222222222222222222
                                   000000000000000000
    SYST-REPID                     YKSD010
                                   5454333222222222222222222222222222222222
                                   9B34010000000000000000000000000000000000
    SY-SUBRC                       0
                                   0000
                                   0000
    A                              1
                                   3
                                   1
    SY-MSGV4
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   2222222222
                                   0000000000
    SY-MSGV2
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   2222222222
                                   0000000000
    VARI
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40                                          ####00000000000000
                                   2222222222222222222200003333333333333322
                                   0000000000000000000000000000000000000000
    ... +  80                          ####################################
                                   2222000000000000000000000000000000000000
                                   0000000000000000000000000000000000000000
    ... + 120                      ########################################
                                   0000000000000000000000000000000000000000
                                   0000000000000000000000000000000000000000
    ... + 160                      ########################################
                                   0000000000000000000000000000000000000000
                                   0000000000000000000000000000000000000000
    ... + 200                      ########################################
                                   0000000000000000000000000000000000000000
                                   0000000000000000000000000000000000000000
    ... + 240                      ###############
                                   000000000000000
                                   000000000000000
    INDT[]                         Table IT_28[0x121]
                                   FFFF958EFFFF940200010001000000070000FFFF
                                   FFFE7B70FFFE74800007000C000000090000FFFF
    ... +  40
                                   0000000E012B0000
                                   40000048004C4000
    INDT                                     0000000000000000
                                   2222222222333333333333333322222222222222
                                   0000000000000000000000000000000000000000
    ... +  40                                 #############################
                                   2222222222200000000000000000000000000000
                                   0000000000000000C00000C00000C00000C00000
    ... +  80                      #
                                   0222222222222222222222222222222222222222
                                   C000000000000000000000000000000000000000
    ... + 120
                                   2
                                   0
         1 EVENT        START-OF-SELECTION
           YKSD010
           YKSD010                                    181
    No dump information available
    Application Calls
    No dump information available
    Application Information
    No dump information available
    Internal notes
    The termination occurred in the function "HandleRsqlErrors" of the SAP
    Basis System, specifically in line 760 of the module
    "//bas/620/src/krn/runt/absapsql.c#40".
    The internal operation just processed is "SQLS".
    The internal session was started at 20071126123440.
    Internal call code.........: "[RSQL/INSR/ZRDSSTOCK ]"
    Active calls in SAP kernel
    DoStack2 ( 0xffffffff7fff6490, 0xffffffff7fff6370, 0x0,0x203ac00, >
    > 0x100362d98, 0xffffffff7fff5b71 ), at 0x100362d98
    CTrcStack2 ( 0x103519930, 0x0, 0x10008, 0x1018dc400, 0x0, 0x1 ), at 0x10036296c
    __1cQrabax_CStackSave6F_v_ ( 0x1, 0x28e8400, 0x100000000, >
    > 0x1028e8400, 0x0, 0x1 ), at 0x1007cccac
    ab_rabax ( 0x1020c9a88, 0x4, 0x1018db3b6, 0x10355210c, 0x2000000, >
    > 0x8550c017 ), at 0x1007c0e68
    __1cKab_rsqlerr6Fpkcip0pnLRS_HEADER94_2pv_v_ ( 0x1018c7110, >
    > 0x2f8, 0x1020c6a14, 0xffffffff7fff6cd8, 0x1018c7121, 0x0 ), at 0x10071aae8
    __1cQHandleRsqlErrors6FnJRsqlError_nJCloseMode__v_ ( 0x8, >
    > 0xfffffffe97470708, 0x6c8000, 0x100000000, 0x0, 0x1 ), at 0x1006c8764
    __1cPSqlsExecuteCall6FCpnLDynCallInfo__v_ ( 0x100000000, >
    > 0x6a, 0x20c6800, 0xe8, 0x1d, 0x1 ), at 0x1006ddd24
    __1cIab_jsqls6F_v_ ( 0xfffffffe4a309e58, 0xfffffffe974707b0, >
    > 0x1028c4f00, 0xe8, 0x1d, 0x100000000 ), at 0x1006c91e8
    __1cIab_extri6F_i_ ( 0x103503ff8, 0xfffffffe4a309e44, 0x8a, >
    > 0x0, 0x1, 0x100000000 ), at 0x1005364e8
    __1cJab_xevent6Fpkc_i_ ( 0x0, 0x3416000, 0xfffffffe4c17f808, >
    > 0x0, 0x1d6f, 0xfffffffe975420d8 ), at 0x10068df84
    ab_dstep ( 0xd, 0xd, 0x46, 0x1, 0x103521a74, 0x103521800 ), at 0x1007d619c
    dynpmcal ( 0xfffffffe9747e8c8, 0x10203a800, 0x1037d8110, >
    > 0x101d2a000, 0x2660, 0x100000000 ), at 0x1003e2274
    dynppai0 ( 0xfffffffe9747e8c8, 0x0, 0x0, 0xfffffffe97482c3f, >
    > 0x0, 0x5 ), at 0x1003df680
    dynprctl ( 0x0, 0xfffffffe9747e8c8, 0x203c400, 0x1024d0cf8, >
    > 0x1020291c0, 0x1024d0c58 ), at 0x1003dd258
    dynpen00 ( 0x0, 0x203c400, 0x1, 0x100000000, 0x203a800, >
    > 0x10203a800 ), at 0x1003d9c24
    TskhLoop ( 0x2, 0x2, 0x10203a8c0, 0x8, 0x0, 0x1 ), at 0x1001d2b18
    tskhstart ( 0x100000000, 0x2028000, 0x102028000, 0x2028000, >
    > 0x1, 0x4 ), at 0x1001c5ae0
    DpMain ( 0x249a000, 0x26e3400, 0x10249a000, 0xffffffff7c755f44, >
    > 0x0, 0x1 ), at 0x100111e60
    List of ABAP programs affected
    Type
    Program
    Gen. Date  Time
    Load Size
    Prg
    YKSD010
    26.11.2007 09:44:15
    55296
    Prg
    SAPMSSY0
    18.12.2004 11:31:22
    62464
    Prg
    SAPMSSYD
    05.06.2002 17:09:33
    16384
    Prg
    SAPFSYSCALLS
    14.02.2002 14:22:47
    6144
    Prg
    RSDBRUNT
    18.12.2004 11:32:05
    220160
    Typ
    RSSCR
    .  .       : m:15
    4096
    Prg
    RSDBSPBL
    13.12.2002 12:24:35
    58368
    Prg
    SAPDB__S
    14.02.2002 14:22:47
    16384
    Typ
    VARID
    12.05.1997 16:51:30
    4096
    Prg
    %_CSYDB0
    14.02.2002 14:22:46
    28672
    Prg
    RSDBSPVA
    18.12.2004 11:18:02
    108544
    Typ
    RSVAMEMKEY
    07.05.1997 13:07:49
    2048
    Prg
    RSDBSPMC
    05.06.2002 17:09:26
    66560
    Typ
    DDSHDESCR
    03.09.1997 03:05:16
    3072
    Typ
    SPPARAMS
    07.05.1997 13:10:38
    1024
    Prg
    SAPLICON
    18.12.2004 09:37:13
    23552
    Prg
    %_CICON
    14.02.2002 14:22:46
    57344
    Prg
    SAPLSABE
    14.02.2002 14:22:47
    11264
    Prg
    SAPLSECU
    18.12.2004 11:16:36
    63488
    Prg
    SAPLDSYA
    14.02.2002 14:22:47
    38912
    Prg
    SAPFSDS1
    13.12.2002 12:14:34
    46080
    Typ
    TDCLD
    02.11.1998 09:51:35
    4096
    Prg
    SAPLSDOD
    18.12.2004 11:31:31
    38912
    Typ
    DOKIL
    12.05.1997 16:46:17
    2048
    Prg
    SAPCNVE
    14.02.2002 14:22:47
    6144
    Prg
    SAPLLANG
    14.02.2002 14:22:47
    8192
    Typ
    T002
    14.02.1998 10:24:58
    2048
    Typ
    RSEXFCODE
    13.08.1997 12:52:57
    1024
    Typ
    RSPARINT
    10.04.1995 09:58:38
    1024
    Prg
    SAPLSCNT
    14.02.2002 14:22:47
    22528
    Prg
    SAPLSVSM
    13.12.2002 12:16:46
    22528
    Prg
    SAPLSGUI
    13.12.2002 12:27:47
    29696
    Prg
    SAPLSTTM
    18.12.2004 11:36:10
    73728
    Prg
    SAPLSBDC
    13.12.2002 12:13:58
    37888
    Prg
    CL_DATAPROVIDER===============CP
    14.02.2002 14:22:46
    38912
    Prg
    %_CCNTL
    14.02.2002 14:22:46
    13312
    Typ
    OBJ_RECORD
    14.02.1998 08:30:43
    2048
    Prg
    SAPLSTUP
    18.12.2004 09:34:15
    62464
    Prg
    SAPLCNDP
    18.12.2004 11:35:59
    153600
    Prg
    SAPFGUICNTL
    13.12.2002 12:30:03
    20480
    Prg
    SAPLOLEA
    18.12.2004 11:30:56
    76800
    Prg
    SAPLSFES
    18.12.2004 11:35:59
    162816
    Prg
    SAPLSPLUGIN
    14.02.2002 14:22:48
    6144
    Prg
    SAPLGRFC
    14.02.2002 14:22:47
    13312
    Prg
    SAPSHDTV
    19.06.2003 19:25:09
    27648
    Typ
    SHDSTU
    14.12.1998 23:15:34
    2048
    Typ
    SHDSTCIU
    14.12.1998 23:15:34
    1024
    Typ
    SSCRTEXTS
    03.09.1997 03:12:33
    2048
    Typ
    SSCRFIELDS
    13.05.1997 12:54:26
    3072
    Prg
    CL_GUI_PROPS_CONSUMER=========CP
    13.12.2002 12:11:27
    27648
    Prg
    SAPLTHFB
    18.12.2004 11:36:24
    293888
    Prg
    CL_DYNAMIC_GUI_EXTENSIONS=====CP
    14.02.2002 14:22:46
    33792
    Prg
    CL_GUI_DATAMANAGER============CP
    18.12.2004 09:49:48
    69632
    Prg
    CL_ABAP_CHAR_UTILITIES========CP
    13.12.2002 12:13:57
    11264
    Typ
    MARD
    15.11.2000 17:38:50
    8192
    Prg
    RSDBSPVD
    18.12.2004 09:35:18
    73728
    Typ
    RVARI
    30.03.1998 09:40:50
    3072
    Typ
    RSVARIVDAT
    04.04.1995 16:12:54
    2048
    Typ
    ZLOCKPGM
    11.02.2006 09:28:47
    2048
    Prg
    %_CCXTAB
    14.02.2002 14:22:46
    6144
    Typ
    ZRDSSTOCK
    26.11.2007 09:44:15
    3072
    Prg
    SAPLGRAP
    18.12.2004 11:36:25
    350208
    Prg
    CL_GUI_FRONTEND_SERVICES======CP
    18.12.2004 11:36:27
    84992
    Prg
    CL_GUI_OBJECT=================CP
    13.12.2002 12:13:57
    348160
    Typ
    OBJ_RECORD
    14.02.1998 08:30:43
    2048
    Prg
    CL_GUI_CFW====================CP
    05.06.2002 17:02:46
    150528
    Typ
    TOLE
    29.07.1998 19:56:01
    2048
    Prg
    %_COLE2
    14.02.2002 14:22:46
    8192
    Typ
    OBJ_RECORD
    14.02.1998 08:30:43
    2048
    Typ
    SWCBCONT
    15.11.2000 17:55:11
    2048
    Prg
    SAPLCNTL
    14.02.2002 14:22:47
    270336
    Prg
    SAPLCNTH
    14.02.2002 14:22:47
    22528
    Typ
    FILE_TABLE
    05.01.1999 10:23:11
    1024
    Prg
    SAPLURFC
    18.12.2004 10:30:34
    16384
    Prg
    SAPLSRFC
    18.12.2004 11:36:45
    34816
    Prg
    SAPLSYST
    14.02.2002 14:22:48
    29696
    Prg
    SAPMSSY1
    14.02.2002 14:22:48
    18432
    Typ
    ARFCDATA
    04.04.1995 15:40:32
    3072
    Typ
    RFC_FIELDS
    20.08.1998 10:56:34
    2048
    Typ
    DPPROPS
    09.07.1997 23:53:23
    1024
    Typ
    OBJ_RECORD
    14.02.1998 08:30:43
    2048
    Typ
    OBJ_RECORD
    14.02.1998 08:30:43
    2048
    Prg
    SAPLCNT0
    14.02.2002 14:22:47
    30720
    Typ
    OLE_PA
    04.04.1995 16:02:19
    2048
    Typ
    ARFCRDATA
    09.11.2000 14:04:16
    4096
    Typ
    OLE_VERBS
    04.04.1995 16:02:20
    2048
    Prg
    CL_ABAP_TYPEDESCR=============CP
    18.12.2004 10:20:56
    22528
    Prg
    CL_ABAP_ELEMDESCR=============CP
    18.12.2004 10:20:34
    18432
    Prg
    CL_ABAP_DATADESCR=============CP
    18.12.2004 10:20:34
    14336
    Prg
    CL_ABAP_REFDESCR==============CP
    18.12.2004 10:20:56
    16384
    Prg
    CL_ABAP_STRUCTDESCR===========CP
    18.12.2004 10:20:56
    19456
    Prg
    CL_ABAP_COMPLEXDESCR==========CP
    18.12.2004 10:20:34
    13312
    Prg
    CL_ABAP_TABLEDESCR============CP
    18.12.2004 10:20:56
    17408
    Prg
    CL_ABAP_CLASSDESCR============CP
    18.12.2004 10:20:56
    23552
    Prg
    CL_ABAP_OBJECTDESCR===========CP
    18.12.2004 10:20:56
    26624
    Prg
    CL_ABAP_INTFDESCR=============CP
    18.12.2004 10:20:34
    19456
    Typ
    OBJ_RECORD
    14.02.1998 08:30:43
    2048
    Prg
    CL_ABAP_SOFT_REFERENCE========CP
    29.03.2001 16:42:12
    7168
    Prg
    CL_ABAP_REFERENCE=============CP
    14.02.2002 14:22:46
    6144
    Prg
    CL_IXML=======================CP
    13.12.2002 12:12:08
    210944
    Prg
    CL_IXML_UNKNOWN===============CP
    13.12.2002 12:12:08
    9216
    Prg
    SAPFGUICNTL_CFW
    14.02.2002 14:22:47
    12288
    Prg
    SAPLSPO1
    18.12.2004 11:37:25
    43008
    Prg
    SAPLCSTR
    18.12.2004 11:21:47
    63488
    Typ
    MAKT
    28.08.1997 08:52:19
    2048
    Typ
    KNA1
    18.12.2004 14:35:36
    22528
    Typ
    MARA
    02.07.2002 16:31:17
    19456
    Typ
    ZRDSSTOCK
    26.11.2007 09:44:15
    3072
    Prg
    CX_SY_OPEN_SQL_DB=============CP
    14.02.2002 14:22:47
    9216
    Typ
    SCX_SRCPOS
    09.11.2000 14:12:15
    1024
    Prg
    CX_SY_OPEN_SQL_ERROR==========CP
    14.02.2002 14:22:47
    8192
    Prg
    CX_SY_SQL_ERROR===============CP
    14.02.2002 14:22:47
    8192
    Prg
    CX_DYNAMIC_CHECK==============CP
    14.02.2002 14:22:47
    8192
    Prg
    CX_ROOT=======================CP
    14.02.2002 14:22:47
    9216
    Prg
    CX_NO_CHECK===================CP
    14.02.2002 14:22:47
    8192
    Prg
    CX_SY_NO_HANDLER==============CP
    14.02.2002 14:22:47
    8192
    Typ
    SYST
    04.12.2000 14:54:51
    24576
    List of internal tables
    PROGRAM=YKSD010DATA=INDT1[]
    TABH+  0(20) = FFFFFFFE974B1D20000000000000000000000026
    TABH+ 20(20) = 00000079000006CA0000007900000000FFFFFFFF
    TABH+ 40(16) = 0400000000000558001024BC00000000
    store        = 0xFFFFFFFE974B1D20
    ext1         = 0x0000000000000000
    id           = 38    (0x00000026)
    label        = 121   (0x00000079)
    fill         = 1738  (0x000006CA)
    leng         = 121   (0x00000079)
    lopc         = 0     (0x00000000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000015
    occu         = 16    (0x00000010)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 7     (cmpManyEq)
    occu0        = 1
    collHash     = 0
    lock         = 0
    shrd         = 0
    visited      = 0
    unShareable  = 0
    wasShared    = 0
    iterIsValid  = 0
    isShareable  = 0
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0xFFFFFFFE974B1468
    pghook       = 0xFFFFFFFE975BCBF0
    idxPtr       = 0x0000000000000000
    refCount     = 0     (0x00000000)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 2480  (0x000009B0)
    lineAlloc    = 1840  (0x00000730)
    store_id     = 20    (0x00000014)
    >>>>> 1st level extension part <<<<<
    regHook      = Not allocated
    hsdir        = Not allocated
    ext2         = Not allocated
    >>>>> 2nd level extension part <<<<<
    tabhBack     = Not allocated
    delta_head   = Not allocated
    PROGRAM=YKSD010DATA=INDT[]
    TABH+  0(20) = FFFFFFFE975B87E0FFFFFFFE9744082000000017
    TABH+ 20(20) = 0000001C000000000000007900000000FFFFFFFF
    TABH+ 40(16) = 04000000000004E8001024BC04000000
    store        = 0xFFFFFFFE975B87E0
    ext1         = 0xFFFFFFFE97440820
    id           = 23    (0x00000017)
    label        = 28    (0x0000001C)
    fill         = 0     (0x00000000)
    leng         = 121   (0x00000079)
    lopc         = 0     (0x00000000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000013
    occu         = 16    (0x00000010)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 7     (cmpManyEq)
    occu0        = 1
    collHash     = 0
    lock         = 0
    shrd         = 0
    visited      = 0
    unShareable  = 0
    wasShared    = 0
    iterIsValid  = 0
    isShareable  = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0xFFFFFFFE975172E8
    pghook       = 0xFFFFFFFE975BCCB8
    idxPtr       = 0x0000000000000000
    refCount     = 0     (0x00000000)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 2480  (0x000009B0)
    lineAlloc    = 176   (0x000000B0)
    store_id     = 145   (0x00000091)
    >>>>> 1st level extension part <<<<<
    regHook      = 0x0000000000000000
    hsdir        = 0x0000000000000000
    ext2         = 0xFFFFFFFE974596A8
    >>>>> 2nd level extension part <<<<<
    tabhBack     = 0xFFFFFFFE974A6B68
    delta_head   = 0000000000000000000000000000000000000000000000000000000000000000
    Directory of Application Tables
    Program
      Name................ Contents....1........2........3........4........5....+....
    YKSD010
      SYST                 |00000000000000x06Ê000000000000
      VARI                 |
      T006A                |                                                        |
      SSCRFIELDS           |
      SSCRTEXTS            |
    RSDBRUNT
      VARID                |
    SAPLICON
      ICONT                |
    SAPFSDS1
      TDCLD                |RE  DOKU   8R XX XXLIMUDOKUX x1E0XR3TRPROGX         |
    SAPLSDOD
      DOKIL                |
    SAPLLANG
      T002                 |ES1EN|
    SAPLOLEA
      TOLE                 |SAP.DATAPROVIDER.1                    {799104C5-04C5-11D0-
    SAPSHDTV
      SHDSTU               |                                                     |
      SHDSTCIU             |                                                  |
    CL_GUI_PROPS_CONSUMER=========CP
      EUDB                 |%C0009900047492F0EC1BC16DDE1000000C0A80197  0000
    CL_GUI_FRONTEND_SERVICES======CP
      EUDB                 |FE0009900047492F0EC1BC16DDE1000000C0A80197  0000
    Directory of Application Tables (Administrative Information)
    Program
      Name.......................... Time.......... Length...
    CL_GUI_FRONTEND_SERVICES======CP
      SYST                           20010612125650 00002404
      VARI                                          00002972
      T006A                                         00000056
      SSCRFIELDS                     20000323224119 00000854
      SSCRTEXTS                                     00000371
    RSDBRUNT
      VARID                                         00000132
    SAPLICON
      ICONT                                         00000065
    SAPFSDS1
      TDCLD                                         00000050
    SAPLSDOD
      DOKIL                                         00000076
    SAPLLANG
      T002                                          00000005
    SAPLOLEA
      TOLE                                          00000197
    SAPSHDTV
      SHDSTU                                        00000053
      SHDSTCIU                                      00000050
    CL_GUI_PROPS_CONSUMER=========CP
      EUDB                                          00003940
    CL_GUI_FRONTEND_SERVICES======CP
      EUDB                                          00003940
    ABAP control blocks CONT
    Include                                 Line source code
    Index Name F1 Co Par01 Par2. Par3. Par4. Tabl
    YKSD010                                   667 LOOP AT INDT1.
    1029 LOOP 05     36     37
    1033 BRAN 05 Branch to 1043
    YKSD010                                   669 INDT1-WERKS = WERKS.
    1034 mvqk 04     178    946
    YKSD010                                   670 INDT1-DAT1 = VDFRM.
    1036 mvqk 08     162    982
    YKSD010                                   671 INDT1-DAT2 = VLDTO.
    1038 mvqk 08     170    1022
    YKSD010                                   675 MODIFY INDT1.
    1040 TMOD 04     36     37
    YKSD010                                   677 ENDLOOP.
    1042 BRAX 01 Branch to 1029
    YKSD010                                   685 INSERT ZRDSSTOCK FROM TABLE IN
    1043 SQLS 0B
    1044 SQLS 00     107
    1045 PAR1 00     131
    1046 SQLS 39     1
    1047 SQLS 39     37
    >>>>> SQLS 1D     36
    YKSD010                                   701 LOOP AT INDT1.
    1049 LOOP 03 79  36     37
    1053 LOOP 05     36     37
    1057 BRAN 05 Branch to 1111
    YKSD010                                   703 AT LAST.
    1058 CNTL 04
    1062 BRAN 03 Branch to 1080
    YKSD010                                   705 MESSAGE I004.
    1063 CATC 08
    1064 MOVL 00  2  58     21
    End of runtime analysis
    Regards
    Prajwal.K

    Refer Amit's reply -
    Exception occurred which is assigned to the class 'CX_SY_OPEN_SQL_DB',
    Regards,
    Amit
    Reward all helpful replies.

  • CX_SY_OPEN_SQL_DB Need Help !

    Hi I'm Getting this Dump
    Runtime Errors         DBIF_RSQL_SQL_ERROR
    Exception              CX_SY_OPEN_SQL_DB
    Date and Time          01/25/2008 05:30:05
    Short text
    SQL error in the database when accessing a table.
    What can you do?
    Note which actions and input led to the error.
    For further help in handling the problem, contact your SAP administrator
    You can use the ABAP dump analysis transaction ST22 to view and manage
    termination messages, in particular for long term reference.
    How to correct the error
    Database error text........: "POS(4477) Too complicated SQL statement (too much
    data)"
    Internal call code.........: "[RSQL/OPEN/ZBBP_CONF_VIEW ]"
    Please check the entries in the system log (Transaction SM21).
    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:
    "DBIF_RSQL_SQL_ERROR" "CX_SY_OPEN_SQL_DB"
    "SAPLZ3P_CLC_FG01" or "LZ3P_CLC_FG01U01"
    "Z3P_CLC_CONFIRMATION_DETAILS"
    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.
    The exception must either be prevented, caught within proedure
    "Z3P_CLC_CONFIRMATION_DETAILS" "(FUNCTION)", or its possible occurrence must be
    declared in the
    RAISING clause of the procedure.
    To prevent the exception, note the following:
    System environment
    SAP-Release 700
    Application server... "pwdf1918"
    Network address...... "10.17.99.25"
    Operating system..... "Windows NT"
    Release.............. "5.2"
    Hardware type........ "4x AMD64 Level"
    Character length.... 16 Bits
    Pointer length....... 64 Bits
    Work process number.. 1
    Shortdump setting.... "full"
    Database server... "pwdf4324"
    Database type..... "ADABAS D"
    Database name..... "IBP"
    Database user ID.. "SAPR3"
    Char.set.... "C"
    SAP kernel....... 700
    created (date)... "Oct 1 2007 00:34:30"
    create on........ "NT 5.2 3790 Service Pack 1 x86 MS VC++ 14.00"
    Database version. "SQLDBC 7.6.1.015 CL 147649 "
    Patch level. 130
    Patch text.. " "
    Database............. "MaxDB 7.6, MaxDB 7.7"
    SAP database version. 700
    Operating system..... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2, Windows
    NT 6.0"
    Memory consumption
    Roll.... 16192
    EM...... 4189840
    Heap.... 0
    Page.... 0
    MM Used. 1496416
    MM Free. 2690800
    User and Transaction
    Client.............. 001
    User................ "EBP_ISP"
    Language Key........ "E"
    Transaction......... " "
    Transactions ID..... "FCF9CADCE4F4F16DB8ED0017A44BD489"
    Program............. "SAPLZ3P_CLC_FG01"
    Screen.............. "SAPMSSY1 3004"
    Screen Line......... 2
    Information on caller of Remote Function Call (RFC):
    System.............. "ISP"
    Database Release.... 700
    Kernel Release...... 700
    Connection Type..... 3 (2=R/2, 3=ABAP System, E=Ext., R=Reg. Ext.)
    Call Type........... "synchron and non-transactional (emode 0, imode 0)"
    Inbound TID.........." "
    Inbound Queue Name..." "
    Outbound TID........." "
    Outbound Queue Name.." "
    Client.............. 001
    User................ "I802084"
    Transaction......... "SE38"
    Call Program........."Z3P_CLC_MAIN01"
    Function Module..... "Z3P_CLC_CONFIRMATION_DETAILS"
    Call Destination.... "EBP_IBPCLNT001"
    Source Server....... "pwdf4106_ISP_33"
    Source IP Address... "10.21.24.140"
    Additional information on RFC logon:
    Trusted Relationship " "
    Logon Return Code... 0
    Trusted Return Code. 0
    Note: For releases < 4.0, information on the RFC caller are often
    only partially available.
    Information on where terminated
    Termination occurred in the ABAP program "SAPLZ3P_CLC_FG01" - in
    "Z3P_CLC_CONFIRMATION_DETAILS".
    The main program was "SAPMSSY1 ".
    In the source code you have the termination point in line 410
    of the (Include) program "LZ3P_CLC_FG01U01".
    The termination is caused because exception "CX_SY_OPEN_SQL_DB" occurred in
    procedure "Z3P_CLC_CONFIRMATION_DETAILS" "(FUNCTION)", but it was neither
    handled locally nor declared
    in the RAISING clause of its signature.
    The procedure is in program "SAPLZ3P_CLC_FG01 "; its source code begins in line
    307 of the (Include program "LZ3P_CLC_FG01U01 ".
    Source Code Extract
    Line
    SourceCde
    380
    END OF TAB1 .
    381
    DATA DAT1 TYPE STANDARD TABLE OF ZBBP_WF_STRUC WITH HEADER LINE .
    382
    DATA OUT_DATES2 TYPE STANDARD TABLE OF Z3P_STR03 WITH HEADER LINE .
    383
    384
    DATA : TAB2 LIKE TAB1 OCCURS 10 WITH HEADER LINE.
    385
    DATA : TAB3 LIKE TAB1 OCCURS 10 WITH HEADER LINE.
    386
    387
    RANGES : REF_DOC FOR BBPD_PD_INDEX_H-REF_DOC_NO.
    388
    389
    CHECK NOT IN_TAB IS INITIAL.
    390
    *Appending the range
    391
    LOOP AT IN_TAB INTO WA_IN.
    392
    *out_dates-dedat = '19791003'.
    393
    *Append out_dates.
    394
    395
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT'
    396
    EXPORTING
    397
    INPUT         = WA_IN-CONFIRMATION
    398
    IMPORTING
    399
    OUTPUT        = WA_IN-CONFIRMATION
    400
    401
    402
    REF_DOC-SIGN = 'I'.
    403
    REF_DOC-LOW(10) = WA_IN-CONFIRMATION.
    404
    REF_DOC-OPTION = 'EQ'.
    405
    APPEND REF_DOC.
    406
    ENDLOOP.
    407
    408
    *Select Query
    409
    >>>>>
    SELECT REF_DOC_NO itm_vper_start Z_VPER_START Z_VPER_END itm_product_type zexpensetype zinvo
    411
    OBJECT_TYPE
    412
    OBJECT_ID
    413
    V~GUID
    414
    FROM zbbp_conf_view AS v "
    415
    LEFT OUTER JOIN bbp_pdisc AS b
    416
    ON vclient  = bclient
    417
    AND vitm_guid  = bguid
    418
    INTO CORRESPONDING FIELDS OF TABLE   TAB1
    419
    WHERE
    420
    object_type   = 'BUS2203'
    421
    AND
    422
    itm_itm_type ne 'HIER'
    423
    and
    424
    ref_doc_no  IN REF_DOC.
    425
    426
    *LOOP AT REF_DOC.
    427
    *SELECT REF_DOC_NO itm_vper_start Z_VPER_START Z_VPER_END itm_product_type zexpensetype zinv
    428
    *OBJECT_TYPE
    429
    *OBJECT_ID
    Contents of system fields
    Name
    Val.
    SY-SUBRC
    0
    SY-INDEX
    1
    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
    CPIC and RFC Control
    SY-MSGTY
    SY-MSGID
    SY-MSGNO
    000
    SY-MSGV1
    SY-MSGV2
    SY-MSGV3
    SY-MSGV4
    SY-MODNO
    0
    SY-DATUM
    20080125
    SY-UZEIT
    053005
    SY-XPROG
    SAPLZ3P_CLC_FG01
    SY-XFORM
    Z3P_CLC_CONFIRMATION_DETAILS
    Active Calls/Events
    No.   Ty.          Program                             Include                             Line
    Name
    4 FUNCTION     SAPLZ3P_CLC_FG01                    LZ3P_CLC_FG01U01                      410
    Z3P_CLC_CONFIRMATION_DETAILS
    3 FORM         SAPLZ3P_CLC_FG01                    LZ3P_CLC_FG01U01                      307
    Z3P_CLC_CONFIRMATION_DETAILS
    2 FORM         SAPMSSY1                            SAPMSSY1                               85
    REMOTE_FUNCTION_CALL
    1 MODULE (PBO) SAPMSSY1                            SAPMSSY1                               30
    %_RFC_START
    Chosen variables
    Name
    Val.
    No.       4 Ty.          FUNCTION
    Name  Z3P_CLC_CONFIRMATION_DETAILS
    IN_TAB[]
    Table IT_0[1019x146]
    \FUNCTION-POOL=Z3P_CLC_FG01\FORM=Z3P_CLC_CONFIRMATION_DETAILS\DATA=%_%_IN_TAB
    Table reference: 0
    TABH+  0(20) = 70292557FE07000070252557FE07000000000000
    TABH+ 20(20) = 0000000000000000FB03000092000000FFFFFFFF
    TABH+ 40(16) = 04010000E003000010000000C1248101
    store        = 0x70292557FE070000
    ext1         = 0x70252557FE070000
    shmId        = 0     (0x00000000)
    id           = 0     (0x00000000)
    label        = 0     (0x00000000)
    fill         = 1019  (0xFB030000)
    leng         = 146   (0x92000000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000006
    occu         = 16    (0x10000000)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 2     (cmpSingleMcmpR)
    occu0        = 1
    groupCntl    = 0
    rfc          = 1
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    isCtfyAble   = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0xC0493757FE070000
    pgHook       = 0xB08C3957FE070000
    idxPtr       = 0x0000000000000000
    shmTabhSet   = 0x0000000000000000
    id           = 4     (0x04000000)
    refCount     = 0     (0x00000000)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 2032  (0xF0070000)
    lineAlloc    = 1072  (0x30040000)
    shmVersId    = 0     (0x00000000)
    shmRefCount  = 1     (0x01000000)
    >>>>> 1st level extension part <<<<<
    regHook      = 0x0000000000000000
    collHook     = 0x0000000000000000
    ext2         = 0x00252557FE070000
    >>>>> 2nd level extension part <<<<<
    tabhBack     = 0xA0242557FE070000
    delta_head   = 0100000001000000CE0000000100000004010000100400009200000001000000000000000500000
    pb_func      = 0x0000000000000000
    pb_handle    = 0x0000000000000000
    OUT_DATES[]
    Table IT_1[0x54]
    \FUNCTION-POOL=Z3P_CLC_FG01\FORM=Z3P_CLC_CONFIRMATION_DETAILS\DATA=%_%_OUT_DATES
    Table reference: 1
    TABH+  0(20) = 000000000000000000533757FE07000000000000
    TABH+ 20(20) = 01000000010000000000000036000000FFFFFFFF
    TABH+ 40(16) = 04010000A004000010000000C1248101
    store        = 0x0000000000000000
    ext1         = 0x00533757FE070000
    shmId        = 0     (0x00000000)
    id           = 1     (0x01000000)
    label        = 1     (0x01000000)
    fill         = 0     (0x00000000)
    leng         = 54    (0x36000000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000010
    occu         = 16    (0x10000000)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 2     (cmpSingleMcmpR)
    occu0        = 1
    groupCntl    = 0
    rfc          = 1
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    isCtfyAble   = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = Not allocated
    pghook       = Not allocated
    idxPtr       = Not allocated
    shmTabhSet   = Not allocated
    id           = Not allocated
    refCount     = Not allocated
    tstRefCount  = Not allocated
    lineAdmin    = Not allocated
    lineAlloc    = Not allocated
    shmVersId    = Not allocated
    shmRefCount  = Not allocated
    shmIsReadOnly = Not allocated
    >>>>> 1st level extension part <<<<<
    regHook      = 0x0000000000000000
    collHook     = 0x0000000000000000
    ext2         = 0x00673857FE070000
    >>>>> 2nd level extension part <<<<<
    tabhBack     = 0x10D43757FE070000
    delta_head   = 0100000002000000CD0000000200000004010000D00400003600000001000000000000000500000
    pb_func      = 0x0000000000000000
    pb_handle    = 0x0000000000000000
    OUT_DETAILS[]
    Table IT_2[0x244]
    \FUNCTION-POOL=Z3P_CLC_FG01\FORM=Z3P_CLC_CONFIRMATION_DETAILS\DATA=%_%_OUT_DETAILS
    Table reference: 2
    TABH+  0(20) = 000000000000000070673857FE07000000000000
    TABH+ 20(20) = 020000000200000000000000F4000000FFFFFFFF
    TABH+ 40(16) = 040100004004000010000000C1248101
    store        = 0x0000000000000000
    ext1         = 0x70673857FE070000
    shmId        = 0     (0x00000000)
    id           = 2     (0x02000000)
    label        = 2     (0x02000000)
    fill         = 0     (0x00000000)
    leng         = 244   (0xF4000000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000008
    occu         = 16    (0x10000000)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 2     (cmpSingleMcmpR)
    occu0        = 1
    groupCntl    = 0
    rfc          = 1
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    isCtfyAble   = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = Not allocated
    pghook       = Not allocated
    idxPtr       = Not allocated
    shmTabhSet   = Not allocated
    id           = Not allocated
    refCount     = Not allocated
    tstRefCount  = Not allocated
    lineAdmin    = Not allocated
    lineAlloc    = Not allocated
    shmVersId    = Not allocated
    shmRefCount  = Not allocated
    shmIsReadOnly = Not allocated
    >>>>> 1st level extension part <<<<<
    regHook      = 0x0000000000000000
    collHook     = 0x0000000000000000
    ext2         = 0xE0B23957FE070000
    >>>>> 2nd level extension part <<<<<
    tabhBack     = 0x80B23957FE070000
    delta_head   = 0100000003000000CC000000030000000401000070040000F400000001000000000000000500000
    pb_func      = 0x0000000000000000
    pb_handle    = 0x0000000000000000
    %_DUMMY$$
    2222
    0000
    0000
    0000
    SYST-REPID
    SAPLZ3P_CLC_FG01
    5454535544454433222222222222222222222222
    310CA30F3C3F6701000000000000000000000000
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    SY-XPROG
    SAPLZ3P_CLC_FG01
    5454535544454433222222222222222222222222
    310CA30F3C3F6701000000000000000000000000
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    SY-TABIX
    0
    0000
    0000
    SCREEN
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    SY
    ##############################################################################T#########  ####
    000000F000000000000000000000000000000090000000000000000000000000000000000000105000000010220000
    100000B000000000000000001000100000000020000000000000000000000000000000000000604000000000000500
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    00000030000000000000000000000000000000000000000000000000000000000000000000000000000000E000000C
    <%_TABLE_BBP_PDHGP>
    %_SPACE
    2
    0
    0
    0
    SY-MANDT
    001
    333
    001
    000
    000
    <%_TABLE_BBP_PDISC>
    REF_DOC[]
    Table IT_3[1019x70]
    \FUNCTION=Z3P_CLC_CONFIRMATION_DETAILS\DATA=REF_DOC[]
    Table reference: 3
    TABH+  0(20) = 50FE3957FE070000000000000000000000000000
    TABH+ 20(20) = 0300000003000000FB03000046000000FFFFFFFF
    TABH+ 40(16) = 04010000100D00000A000000C1048001
    store        = 0x50FE3957FE070000
    ext1         = 0x0000000000000000
    shmId        = 0     (0x00000000)
    id           = 3     (0x03000000)
    label        = 3     (0x03000000)
    fill         = 1019  (0xFB030000)
    leng         = 70    (0x46000000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000055
    occu         = 10    (0x0A000000)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 2     (cmpSingleMcmpR)
    occu0        = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    isCtfyAble   = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0x70FB3957FE070000
    pgHook       = 0x30FB3A57FE070000
    idxPtr       = 0x0000000000000000
    shmTabhSet   = 0x0000000000000000
    id           = 5     (0x05000000)
    refCount     = 0     (0x00000000)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 1950  (0x9E070000)
    lineAlloc    = 1054  (0x1E040000)
    shmVersId    = 0     (0x00000000)
    shmRefCount  = 1     (0x01000000)
    >>>>> 1st level extension part <<<<<
    regHook      = Not allocated
    collHook     = Not allocated
    ext2         = Not allocated
    >>>>> 2nd level extension part <<<<<
    tabhBack     = Not allocated
    delta_head   = Not allocated
    pb_func      = Not allocated
    pb_handle    = Not allocated
    TAB1[]
    Table IT_4[0x256]
    \FUNCTION=Z3P_CLC_CONFIRMATION_DETAILS\DATA=TAB1[]
    Table reference: 4
    TABH+  0(20) = 0000000000000000000000000000000000000000
    TABH+ 20(20) = 04000000040000000000000000010000FFFFFFFF
    TABH+ 40(16) = 04010000700A000010000000C1248001
    store        = 0x0000000000000000
    ext1         = 0x0000000000000000
    shmId        = 0     (0x00000000)
    id           = 4     (0x04000000)
    label        = 4     (0x04000000)
    fill         = 0     (0x00000000)
    leng         = 256   (0x00010000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000041
    occu         = 16    (0x10000000)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 2     (cmpSingleMcmpR)
    occu0        = 1
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    isCtfyAble   = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = Not allocated
    pghook       = Not allocated
    idxPtr       = Not allocated
    shmTabhSet   = Not allocated
    id           = Not allocated
    refCount     = Not allocated
    tstRefCount  = Not allocated
    lineAdmin    = Not allocated
    lineAlloc    = Not allocated
    shmVersId    = Not allocated
    shmRefCount  = Not allocated
    shmIsReadOnly = Not allocated
    >>>>> 1st level extension part <<<<<
    regHook      = Not allocated
    collHook     = Not allocated
    ext2         = Not allocated
    >>>>> 2nd level extension part <<<<<
    tabhBack     = Not allocated
    delta_head   = Not allocated
    pb_func      = Not allocated
    pb_handle    = Not allocated
    TAB1
    000000000000000000000000                                          00
    2222222222222222222222222233333333333333333333333322222222222222222222222222222222222222222233
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    DAT1-GUID
    2222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000
    TAB1-GUID
    0000000000000000
    0000000000000000
    No.       3 Ty.          FORM
    Name  Z3P_CLC_CONFIRMATION_DETAILS
    %_ARCHIVE
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    %_%_IN_TAB
    Table IT_0[1019x146]
    %_%_OUT_DATES
    Table IT_1[0x54]
    %_VIASELSCR
    0
    4
    %_%_OUT_DETAILS
    Table IT_2[0x244]
    No.       2 Ty.          FORM
    Name  REMOTE_FUNCTION_CALL
    HEADER
    000000000000
    000000000000
    TYPE
    3
    0000
    3000
    SY-XPROG
    SAPLZ3P_CLC_FG01
    5454535544454433222222222222222222222222
    310CA30F3C3F6701000000000000000000000000
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    RC
    0
    0000
    0000
    SY-XFORM
    Z3P_CLC_CONFIRMATION_DETAILS
    535544454444454454445445444522
    A30F3C3F3FE692D149FEF45419C300
    000000000000000000000000000000
    000000000000000000000000000000
    %_SPACE
    2
    0
    0
    0
    No.       1 Ty.          MODULE (PBO)
    Name  %_RFC_START
    %_PRINT
    000                                                                                0###
    2222333222222222222222222222222222222222222222222222222222222222222222222222222222222222223000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    RFCTYPE_INTERNAL
    3
    0000
    3000
    Internal notes
    The termination was triggered in function "HandleRsqlErrors"
    of the SAP kernel, in line 764 of the module
    "//bas/700_REL/src/krn/runt/absapsql.c#8".
    The internal operation just processed is "SQLS".
    Internal mode was started at 20080125053005.
    Internal call code.........: "[RSQL/OPEN/ZBBP_CONF_VIEW ]"
    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=1568)
    When      : 1/25/2008 5:30:5.129
    Threads   : 2
    Computer Name       : PWDF1918
    User Name           : ibpadm
    Number of Processors: 4
    Processor Type: AMD64 Family 15 Model 33 Stepping 2
    Windows Version     : 5.2 Current Build: 3790
    State Dump for Thread Id 2238
    FramePtr         ReturnAd         Param#1          Function Name
    0000000007ccb730 0000000077d7047f 0000000056355570 ntdll!NtWaitForSingleObject
    0000000007ccb7d0 0000000001722861 00000000000002a0 kernel32!WaitForSingleObjectEx
    0000000007ccba20 0000000000610ec5 0000000000000001 disp+work!NTDebugProcess [ntstcdbg.c (501)]
    0000000007ccba50 0000000000afbbec 0000000000000001 disp+work!CTrcStack [dptstack.c (182)]
    0000000007ccbaa0 0000000000b00e10 0000000000000001 disp+work!rabax_CStackSave [abrabax.c (7091)]
    0000000007ccc480 0000000000a1153c 0000000001c934c0 disp+work!ab_rabax [abrabax.c (1231)]
    0000000007ccc520 00000000009e2656 0000000000000000 disp+work!ab_rsqlerr [abdberr.c (787)]
    0000000007ccc630 00000000009e4761 0000000000000003 disp+work!HandleRsqlErrors [absapsql.c (765)]
    0000000007ccc820 00000000009f5543 000000000000003b disp+work!SqlsExecuteCall [absapsql.c (7466)]
    0000000007ccc8d0 00000000008339b2 0000000000000001 disp+work!ab_jsqls [absapsql.c (1414)]
    0000000007ccca50 0000000000a0e8b7 0000000000000008 disp+work!ab_extri [abextri.c (554)]
    0000000007cccaa0 0000000000acb06c 0000000000000008 disp+work!ab_xevent [abrunt1.c (281)]
    0000000007cccb30 000000000066f0a8 0000000000000008 disp+work!ab_dstep [abdynpro.c (492)]
    0000000007ccccb0 0000000000672c7d 000007fe5730c890 disp+work!dynpmcal [dymainstp.c (2403)]
    0000000007cccd40 000000000067267a 000007fe572514a0 disp+work!dynppbo0 [dymainstp.c (543)]
    0000000007cccdf0 0000000000631ed5 0000000000000000 disp+work!dynprctl [dymainstp.c (360)]
    0000000007ccfc30 00000000004d71d3 0000000000000003 disp+work!dynpen00 [dymain.c (1629)]
    0000000007ccfeb0 000000000042d5a6 0000000007d58600 disp+work!TskhLoop [thxxhead.c (4467)]
    0000000007ccfee0 000000000040108d ffffffff00000003 disp+work!DpMain [dpxxdisp.c (1121)]
    0000000007ccff10 00000000019c7781 0000000000000000 disp+work!nlsui_main [thxxanf.c (84)]
    0000000007ccff70 0000000077d5966c 0000000000000000 disp+work!wmainCRTStartup [crtexe.c (498)]
    0000000007ccffa0 0000000000000000 00000000019c7610 kernel32!BaseProcessStart
    State Dump for Thread Id 374c
    FramePtr         ReturnAd         Param#1          Function Name
    000000000de0fe40 0000000077d5f651 0000000000000000 ntdll!NtFsControlFile
    000000000de0feb0 00000000018ad9af fffffffffffffffe kernel32!ConnectNamedPipe
    000000000de0ff40 000007ff7fc411c4 0000000000000000 disp+work!SigIMsgFunc [signt.c (679)]
    000000000de0ff70 0000000077d6b69a 0000000077d6b660 msvcrt!endthreadex
    000000000de0ffa0 0000000000000000 0000000000000000 kernel32!BaseThreadStart
    List of ABAP programs affected
    Index
    Typ
    Program
    Group
    Date
    Time
    Size
    Lang.
    0
    Prg
    SAPMSSY1
    0
    05/27/2005
    16:45:10
    22528
    E
    1
    Prg
    SAPLZ3P_CLC_FG01
    1
    01/25/2008
    02:47:42
    33792
    E
    2
    Typ
    Z3P_STR01
    0
    11/03/2007
    07:50:03
    3072
    3
    Typ
    Z3P_STR03
    0
    11/03/2007
    07:50:03
    2048
    4
    Typ
    Z3P_STR02
    0
    01/25/2008
    02:47:42
    4096
    5
    Prg
    SAPLALFA
    5
    02/08/2005
    13:13:24
    8192
    E
    6
    Typ
    ZBBP_CONF_VIEW
    0
    09/07/2007
    05:21:21
    10240
    7
    Typ
    BBP_PDISC
    0
    12/06/2007
    04:04:51
    12288
    8
    Prg
    CX_SY_OPEN_SQL_DB=============CP
    8
    07/01/2005
    18:22:20
    12288
    E
    9
    Typ
    SCX_SRCPOS
    0
    02/08/2005
    13:13:15
    2048
    10
    Prg
    CX_SY_OPEN_SQL_ERROR==========CP
    10
    07/01/2005
    18:22:20
    10240
    E
    11
    Prg
    CX_SY_SQL_ERROR===============CP
    11
    07/01/2005
    18:22:20
    10240
    E
    12
    Prg
    CX_DYNAMIC_CHECK==============CP
    12
    07/01/2005
    18:22:20
    10240
    E
    13
    Prg
    CX_ROOT=======================CP
    13
    11/03/2007
    02:55:47
    11264
    E
    14
    Prg
    CX_NO_CHECK===================CP
    14
    07/01/2005
    18:22:20
    10240
    E
    15
    Prg
    CX_SY_NO_HANDLER==============CP
    15
    07/01/2005
    18:22:20
    10240
    E
    16
    Typ
    SYST
    0
    01/23/2005
    00:05:42
    31744
    17
    Typ
    ZBBP_WF_STRUC
    0
    09/07/2007
    05:21:20
    2048
    Directory of Application Tables
    Name                                     Date       Time       Lngth
    Val.
    Program  SAPMSSY1
    SYST                                       /  /       :  :     00004612
    \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\0
    ABAP Control Blocks (CONT)

    What is your database/livecache version?
    Check note 1001257 - SQL error -1105 Too complicated SQL statement
    Markus

  • Problem when i try to modifi and save a query

    Dear SDN Members
    I have the follow error when I try to save a query (after to modified a Variable)
    - The system tried to insert a data record, even though a data record with the same primary key already exists
    - An exception with the type CX_SY_OPEN_SQL_DB occurred, but was neither handled locally, nor declared in a RAISING clause
    - Program error in class SAPMSSY1 method: UNCAUGHT_EXCEPTION  
    My BW version is BI 7.0
    I went to TCODE ST22, and the dumps is the follow
    Runtime Errors         UNCAUGHT_EXCEPTION
    Exception              CX_SY_NO_HANDLER
    Date and Time          23.05.2007 12:03:10
    Short text
    An exception occurred that was not caught.
    What happened?
    The exception 'CX_SY_NO_HANDLER' was raised, but it was not caught anywhere
    along
    the call hierarchy.
    Since exceptions represent error situations and this error was not
    adequately responded to, the running ABAP program
    'CL_RSBOLAP_BICS_SERVICES======CP' has to be
    terminated.
    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 which is explained in detail below.
    The exception, which is assigned to class 'CX_SY_NO_HANDLER', was not caught
    and
    therefore caused a runtime error.
    The reason for the exception is:
    An exception with the type CX_SY_OPEN_SQL_DB occurred, but was neither handled
    locally, nor declared in a RAISING clause
    The occurrence of the exception is closely related to the occurrence of
    a previous exception "CX_SY_OPEN_SQL_DB", which was raised in the program
    "SAPLRZD1",
    specifically in line 148 of the (include) program "LRZD1U40".
    The cause of the exception was:
    The system tried to insert a data record, even though a data record with the
    same primary key already exists
    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:
    "UNCAUGHT_EXCEPTION" "CX_SY_NO_HANDLER"
    "CL_RSBOLAP_BICS_SERVICES======CP" or "CL_RSBOLAP_BICS_SERVICES======CM003"
    "HANDLE_UNCAUGHT_EXCEPTION"
    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... "ecedc05bwh02"
    Network address...... "192.168.186.10"
    Operating system..... "Windows NT"
    Release.............. "5.2"
    Hardware type........ "8x Intel 801586"
    Character length.... 8 Bits
    Pointer length....... 32 Bits
    Work process number.. 0
    Shortdump setting.... "full"
    Database server... "ECEDC05BWH02"
    Database type..... "ORACLE"
    Database name..... "BWD"
    Database user ID.. "SAPBWP"
    Char.set.... "Spanish_Spain.1252"
    SAP kernel....... 700
    created (date)... "Apr 2 2006 23:01:26"
    create on........ "NT 5.0 2195 Service Pack 4 x86 MS VC++ 13.10"
    Database version. "OCI_10103_SHARE "
    Patch level. 52
    Patch text.. " "
    Database............. "ORACLE 9.2.0.., ORACLE 10.1.0.., ORACLE 10.2.0.."
    SAP database version. 700
    Operating system..... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2"
    Memory consumption
    Roll.... 8112
    EM...... 8382048
    Heap.... 0
    Page.... 16384
    MM Used. 5467512
    MM Free. 2913088
    User and Transaction
    Client.............. 100
    User................ "ATOS"
    Language Key........ "S"
    Transaction......... " "
    Program............. "CL_RSBOLAP_BICS_SERVICES======CP"
    Screen.............. "SAPMSSY1 3004"
    Screen Line......... 2
    Information on caller of Remote Function Call (RFC):
    System.............. "########"
    Database Release.... 710
    Kernel Release...... 710
    Connection Type..... "E" (2=R/2, 3=ABAP System, E=Ext., R=Reg. Ext.)
    Call Type........... "synchron and non-transactional (emode 0, imode 0)"
    Inbound TID.........." "
    Inbound Queue Name..." "
    Outbound TID........." "
    Outbound Queue Name.." "
    Client.............. "###"
    User................ "############"
    Transaction......... " "
    Call Program........."BExQueryDesignerStarter"
    Function Module..... "RSZ_X_COMPONENT_SET_NEW"
    Call Destination.... "<unknown>"
    Source Server....... "clalinetzky2"
    Source IP Address... "10.139.56.93"
    Additional information on RFC logon:
    Trusted Relationship " "
    Logon Return Code... 0
    Trusted Return Code. 0
    Note: For releases < 4.0, information on the RFC caller are often
    only partially available.
    Information on where terminated
    Termination occurred in the ABAP program "CL_RSBOLAP_BICS_SERVICES======CP" -
    in "HANDLE_UNCAUGHT_EXCEPTION".
    The main program was "SAPMSSY1 ".
    In the source code you have the termination point in line 28
    of the (Include) program "CL_RSBOLAP_BICS_SERVICES======CM003".
    Source Code Extract
    Line
    SourceCde
    1
    METHOD handle_uncaught_exception.
    2
    3
    data:
    4
    l_r_program_error  TYPE REF TO cx_rsbolap_program_error.
    5
    data: lBExDebug type rs_bool.
    6
    GET PARAMETER ID 'BEXDEBUG' FIELD lBExDebug.
    7
    8
    if lBExDebug = rs_c_true or CL_RSTT_TRACE=>GET_TRACEMODE_CURRENT_TRACE( ) = rstt0_c_tracem
    9
    Break-point for debugging, e.g. during running a trace
    10
    break-point.  "#EC NOBREAK
    11
    endif.
    12
    Subcall?
    13
    if P_RFC_CALL_DEPTH > 1.
    14
      Forward the exception
    15
    subtract 1 from P_RFC_CALL_DEPTH.
    16
    DATA: l_r_x TYPE REF TO cx_no_check.
    17
    TRY.
    18
    l_r_x ?= i_r_exception.
    19
    CATCH cx_root.
    20
    CLEAR l_r_x.
    21
    ENDTRY.
    22
    23
    IF l_r_x IS INITIAL.
    24
    RAISE EXCEPTION TYPE cx_rsr_propagate_x
    25
    EXPORTING
    26
    previous = i_r_exception.
    27
    ELSE.
    >>>>>
    RAISE EXCEPTION l_r_x.
    29
    ENDIF.
    30
    endif.
    31
    32
    All exceptions should have been caugth -> X-Message
    33
    r_max_message_type = 'A'.
    34
    35
    Wrap the exception in a bolap program error exception
    36
    CREATE OBJECT l_r_program_error
    37
    EXPORTING
    38
    context  = 'UNCAUGHT_EXCEPTION'
    39
    previous = i_r_exception.
    40
    41
    Notify the message handler
    42
    CALL FUNCTION 'RRMS_EXCEPTION_HANDLING'
    43
    EXPORTING
    44
    I_MSGTY       = 'A'
    45
    i_r_exception = l_r_program_error.
    46
    47
    ENDMETHOD.
    Contents of system fields
    Name
    Val.
    SY-SUBRC
    0
    SY-INDEX
    52
    SY-TABIX
    0
    SY-DBCNT
    0
    SY-FDPOS
    1
    SY-LSIND
    0
    SY-PAGNO
    0
    SY-LINNO
    1
    SY-COLNO
    1
    SY-PFKEY
    SY-UCOMM
    SY-TITLE
    Control CPI-C y RFC
    SY-MSGTY
    SY-MSGID
    SY-MSGNO
    000
    SY-MSGV1
    SY-MSGV2
    SY-MSGV3
    SY-MSGV4
    SY-MODNO
    0
    SY-DATUM
    20070523
    SY-UZEIT
    120310
    SY-XPROG
    SAPCNVE
    SY-XFORM
    CONVERSION_EXIT
    Active Calls/Events
    No.   Ty.          Program                             Include                             Line
    Name
    5 METHOD       CL_RSBOLAP_BICS_SERVICES======CP    CL_RSBOLAP_BICS_SERVICES======CM003    28
    CL_RSBOLAP_BICS_SERVICES=>HANDLE_UNCAUGHT_EXCEPTION
    4 FUNCTION     SAPLRZX0                            LRZX0U52                              908
    RSZ_X_COMPONENT_SET_NEW
    3 FORM         SAPLRZX0                            LRZX0U52                                1
    RSZ_X_COMPONENT_SET_NEW
    2 FORM         SAPMSSY1                            SAPMSSY1                               85
    REMOTE_FUNCTION_CALL
    1 MODULE (PBO) SAPMSSY1                            SAPMSSY1                               30
    %_RFC_START
    Chosen variables
    Name
    Val.
    No.       5 Ty.          METHOD
    Name  CL_RSBOLAP_BICS_SERVICES=>HANDLE_UNCAUGHT_EXCEPTION
    I_R_EXCEPTION
    |
    | 1000E000 |
    | A0005000 |
    | R_MAX_MESSAGE_TYPE |
    |  |
    | 2 |
    | 0 |
    | L_R_X |
    |
    1000E000
    A0005000
    SYST-REPID
    CL_RSBOLAP_BICS_SERVICES======CP
    4455544445544455545544453333334522222222
    3CF232FC10F2933F35269353DDDDDD3000000000
    %_SPACE
    2
    0
    %_DUMMY$$
    2222
    0000
    %_ARCHIVE
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    RSJOBINFO
    00000000000000                                  ####
    222222222222222222222222222222223333333333333322222222222222222222222222222222220000
    000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    SY
    4###########################################################################y#################
    3000000000000000000000000000000000000000000000000000000000000000000000000000700000000000000000
    400000000000800000000000A000000000000000000010001000000010000000000000000000900000000000000000
    %_EXCP
    F0000000
    F0000000
    SY-REPID
    CL_RSBOLAP_BICS_SERVICES======CP
    4455544445544455545544453333334522222222
    3CF232FC10F2933F35269353DDDDDD3000000000
    SPACE
    2
    0
    L_R_PROGRAM_ERROR
    |
    | F0000000 |
    | F0000000 |
    | No.       4 Ty.          FUNCTION |
    | Name  RSZ_X_COMPONENT_SET_NEW |
    | I_COMPUID |
    | F3IH9GRA1X9X7DRPIYFPE1QP7 |
    | 4344345435353455454543553 |
    | 6398972118987420996051107 |
    | I_COPY_MODE |
    |  |
    | 2 |
    | 0 |
    | I_LANGUAGE |
    | S |
    | 5 |
    | 3 |
    | I_NODE |
    | 0000000000 |
    | 3333333333 |
    | 0000000000 |
    | I_NO_TRANSPORT |
    |  |
    | 2 |
    | 0 |
    | I_OBJVERS |
    | A |
    | 4 |
    | 1 |
    | I_QD_VERSION |
    | 700 |
    | 33322 |
    | 70000 |
    | I_ROLE |
    |  |
    | 222222222222222222222222222222 |
    | 000000000000000000000000000000 |
    | E_GENUNIID |
    |  |
    | 2222222222222222222222222 |
    | 0000000000000000000000000 |
    | E_SUBRC |
    | 0 |
    | 0000 |
    | 0000 |
    | C_T_CALC[] |
    | Table IT_3889[5x158] |
    | FUNCTION-POOL=RZX0FORM=RSZ_X_COMPONENT_SET_NEWDATA=%_%_C_T_CALC |
    | Table reference: 56 |
    | TABH+  0(20) = 28DD0EA0E81518A00000000038000000310F0000 |
    | TABH+ 20(20) = 050000009E000000FFFFFFFF04CB000058150000 |
    | TABH+ 40( 8) = 10000000C1248101 |
    | store        = 0x28DD0EA0 |
    | ext1         = 0xE81518A0 |
    | shmId        = 0     (0x00000000) |
    | id           = 56    (0x38000000) |
    | label        = 3889  (0x310F0000) |
    | fill         = 5     (0x05000000) |
    | leng         = 158   (0x9E000000) |
    | loop         = -1    (0xFFFFFFFF) |
    | xtyp         = TYPE#000087 |
    | occu         = 16    (0x10000000) |
    | access       = 1     (ItAccessStandard) |
    | idxKind      = 0     (ItIndexNone) |
    | uniKind      = 2     (ItUniqueNon) |
    | keyKind      = 1     (default) |
    | cmpMode      = 2     (cmpSingleMcmpR) |
    | occu0        = 1 |
    | groupCntl    = 0 |
    | rfc          = 1 |
    | unShareable  = 0 |
    | mightBeShared = 0 |
    | sharedWithShmTab = 0 |
    | isShmLockId  = 0 |
    | gcKind       = 0 |
    | isUsed       = 1 |
    | isCtfyAble   = 1 |
    | >>>>> Shareable Table Header Data <<<<< |
    | tabi         = 0x481839A0 |
    | pgHook       = 0x00000000 |
    | idxPtr       = 0x00000000 |
    | shmTabhSet   = 0x00000000 |
    | id           = 2911  (0x5F0B0000) |
    | refCount     = 0     (0x00000000) |
    | tstRefCount  = 0     (0x00000000) |
    | lineAdmin    = 16    (0x10000000) |
    | lineAlloc    = 16    (0x10000000) |
    | shmVersId    = 0     (0x00000000) |
    | shmRefCount  = 1     (0x01000000) |
    | >>>>> 1st level extension part <<<<< |
    | regHook      = 0x00000000 |
    | collHook     = 0x00000000 |
    | ext2         = 0xF0B70EA0 |
    | >>>>> 2nd level extension part <<<<< |
    | tabhBack     = 0x40F60EA0 |
    | delta_head   = 0100000065000000E40000002B00000004CB0000901500009E0000000100000005000000 |
    | pb_func      = 0x00000000 |
    | pb_handle    = 0x00000000 |
    | C_T_CELL[] |
    | Table IT_3890[0x76] |
    | FUNCTION-POOL=RZX0FORM=RSZ_X_COMPONENT_SET_NEWDATA=%_%_C_T_CELL |
    | Table reference: 52 |
    | TABH+  0(20) = 0000000028A51EA00000000034000000320F0000 |
    | TABH+ 20(20) = 000000004C000000FFFFFFFF04CB0000C8150000 |
    | TABH+ 40( 8) = 10000000C1248101 |
    | store        = 0x00000000 |
    | ext1         = 0x28A51EA0 |
    | shmId        = 0     (0x00000000) |
    | id           = 52    (0x34000000) |
    | label        = 3890  (0x320F0000) |
    | fill         = 0     (0x00000000) |
    | leng         = 76    (0x4C000000) |
    | loop         = -1    (0xFFFFFFFF) |
    | xtyp         = TYPE#000089 |
    | occu         = 16    (0x10000000) |
    | access       = 1     (ItAccessStandard) |
    | idxKind      = 0     (ItIndexNone) |
    | uniKind      = 2     (ItUniqueNon) |
    | keyKind      = 1     (default) |
    | cmpMode      = 2     (cmpSingleMcmpR) |
    | occu0        = 1 |
    | groupCntl    = 0 |
    | rfc          = 1 |
    | unShareable  = 0 |
    | mightBeShared = 0 |
    | sharedWithShmTab = 0 |
    | isShmLockId  = 0 |
    | gcKind       = 0 |
    | isUsed       = 1 |
    | isCtfyAble   = 1 |
    | >>>>> Shareable Table Header Data <<<<< |
    | tabi         = Not allocated |
    | pghook       = Not allocated |
    | idxPtr       = Not allocated |
    | shmTabhSet   = Not allocated |
    | id           = Not allocated |
    | refCount     = Not allocated |
    | tstRefCount  = Not allocated |
    | lineAdmin    = Not allocated |
    | lineAlloc    = Not allocated |
    | shmVersId    = Not allocated |
    | shmRefCount  = Not allocated |
    | shmIsReadOnly = Not allocated |
    | >>>>> 1st level extension part <<<<< |
    | regHook      = 0x00000000 |
    | collHook     = 0x00000000 |
    | ext2         = 0x68DA0EA0 |
    | >>>>> 2nd level extension part <<<<< |
    | tabhBack     = 0x38EA1DA0 |
    | delta_head   = 0100000066000000E60000002900000004CB0000001600004C0000000100000005000000 |
    | pb_func      = 0x00000000 |
    | pb_handle    = 0x00000000 |
    | C_T_COMPDIR[] |
    | Table IT_3891[7x169] |
    | FUNCTION-POOL=RZX0FORM=RSZ_X_COMPONENT_SET_NEWDATA=%_%_C_T_COMPDIR |
    | Table reference: 54 |
    | TABH+  0(20) = D8D80EA048A51EA00000000036000000330F0000 |
    | TABH+ 20(20) = 07000000A9000000FFFFFFFF04CB000098130000 |
    | TABH+ 40( 8) = 10000000C1248501 |
    | store        = 0xD8D80EA0 |
    | ext1         = 0x48A51EA0 |
    | shmId        = 0     (0x00000000) |
    | id           = 54    (0x36000000) |
    | label        = 3891  (0x330F0000) |
    | fill         = 7     (0x07000000) |
    | leng         = 169   (0xA9000000) |
    | loop         = -1    (0xFFFFFFFF) |
    | xtyp         = TYPE#000079 |
    | occu         = 16    (0x10000000) |
    | access       = 1     (ItAccessStandard) |
    | idxKind      = 0     (ItIndexNone) |
    | uniKind      = 2     (ItUniqueNon) |
    | keyKind      = 1     (default) |
    | cmpMode      = 2     (cmpSingleMcmpR) |
    | occu0        = 1 |
    | groupCntl    = 0 |
    | rfc          = 1 |
    | unShareable  = 0 |
    | mightBeShared = 1 |
    | sharedWithShmTab = 0 |
    | isShmLockId  = 0 |
    | gcKind       = 0 |
    | isUsed       = 1 |
    | isCtfyAble   = 1 |
    | >>>>> Shareable Table Header Data <<<<< |
    | tabi         = 0x382239A0 |
    | pgHook       = 0x00000000 |
    | idxPtr       = 0x00000000 |
    | shmTabhSet   = 0x00000000 |
    | id           = 2912  (0x600B0000) |
    | refCount     = 0     (0x00000000) |
    | tstRefCount  = 0     (0x00000000) |
    | lineAdmin    = 16    (0x10000000) |
    | lineAlloc    = 16    (0x10000000) |
    | shmVersId    = 0     (0x00000000) |
    | shmRefCount  = 2     (0x02000000) |
    | >>>>> 1st level extension part <<<<< |
    | regHook      = 0x00000000 |
    | collHook     = 0x00000000 |
    | ext2         = 0xB8C223A0 |
    | >>>>> 2nd level extension part <<<<< |
    | tabhBack     = 0x30B50EA0 |
    | delta_head   = 0100000067000000E70000002800000004CB0000D0130000A90000000100000005000000 |
    | pb_func      = 0x00000000 |
    | pb_handle    = 0x00000000 |
    | C_T_COMPIC[] |
    | Table IT_3892[5x81] |
    | FUNCTION-POOL=RZX0FORM=RSZ_X_COMPONENT_SET_NEWDATA=%_%_C_T_COMPIC |
    | Table reference: 49 |
    | TABH+  0(20) = 80D90EA060D90EA00000000031000000340F0000 |
    | TABH+ 20(20) = 0500000051000000FFFFFFFF04CB000008140000 |
    | TABH+ 40( 8) = 10000000C1248101 |
    | store        = 0x80D90EA0 |
    | ext1         = 0x60D90EA0 |
    | shmId        = 0     (0x00000000) |
    | id           = 49    (0x31000000) |
    | label        = 3892  (0x340F0000) |
    | fill         = 5     (0x05000000) |
    | leng         = 81    (0x51000000) |
    | loop         = -1    (0xFFFFFFFF) |
    | xtyp         = TYPE#000081 |
    | occu         = 16    (0x10000000) |
    | access       = 1     (ItAccessStandard) |
    | idxKind      = 0     (ItIndexNone) |
    | uniKind      = 2     (ItUniqueNon) |
    | keyKind      = 1     (default) |
    | cmpMode      = 2     (cmpSingleMcmpR) |
    | occu0        = 1 |
    | groupCntl    = 0 |
    | rfc          = 1 |
    | unShareable  = 0 |
    | mightBeShared = 0 |
    | sharedWithShmTab = 0 |
    | isShmLockId  = 0 |
    | gcKind       = 0 |
    | isUsed       = 1 |
    | isCtfyAble   = 1 |
    | >>>>> Shareable Table Header Data <<<<< |
    | tabi         = 0x409A1EA0 |
    | pgHook       = 0x00000000 |
    | idxPtr       = 0x00000000 |
    | shmTabhSet   = 0x00000000 |
    | id           = 2913  (0x610B0000) |
    | refCount     = 0     (0x00000000) |
    | tstRefCount  = 0     (0x00000000) |
    | lineAdmin    = 16    (0x10000000) |
    | lineAlloc    = 16    (0x10000000) |
    | shmVersId    = 0     (0x00000000) |
    | shmRefCount  = 1     (0x01000000) |
    | >>>>> 1st level extension part <<<<< |
    | regHook      = 0x00000000 |
    | collHook     = 0x00000000 |
    | ext2         = 0x18D90EA0 |
    | >>>>> 2nd level extension part <<<<< |
    | tabhBack     = 0xD8B21EA0 |
    | delta_head   = 0100000068000000E50000002A00000004CB000040140000510000000100000005000000 |
    | pb_func      = 0x00000000 |
    | pb_handle    = 0x00000000 |
    | C_T_ELTATTR[] |
    | Table IT_3893[0x124] |
    | FUNCTION-POOL=RZX0FORM=RSZ_X_COMPONENT_SET_NEWDATA=%_%_C_T_ELTATTR |
    | Table reference: 332 |
    | TABH+  0(20) = 0000000008DA0EA0000000004C010000350F0000 |
    | TABH+ 20(20) = 000000007C000000FFFFFFFF04CB0000B8120000 |
    | TABH+ 40( 8) = 10000000C1248101 |
    | store        = 0x00000000 |
    | ext1         = 0x08DA0EA0 |
    | shmId        = 0     (0x00000000) |
    | id           = 332   (0x4C010000) |
    | label        = 3893  (0x350F0000) |
    | fill         = 0     (0x00000000) |
    | leng         = 124   (0x7C000000) |
    | loop         = -1    (0xFFFFFFFF) |
    | xtyp         = TYPE#000075 |
    | occu         = 16    (0x10000000) |
    | access       = 1     (ItAccessStandard) |
    | idxKind      = 0     (ItIndexNone) |
    | uniKind      = 2     (ItUniqueNon) |
    | keyKind      = 1     (default) |
    | cmpMode      = 2     (cmpSingleMcmpR) |
    | occu0        = 1 |
    | groupCntl    = 0 |
    | rfc          = 1 |
    | unShareable  = 0 |
    | mightBeShared = 0 |
    | sharedWithShmTab = 0 |
    | isShmLockId  = 0 |
    | gcKind       = 0 |
    | isUsed       = 1 |
    | isCtfyAble   = 1 |
    | >>>>> Shareable Table Header Data <<<<< |
    | tabi         = Not allocated |
    | pghook       = Not allocated |
    | idxPtr       = Not allocated |
    | shmTabhSet   = Not allocated |
    | id           = Not allocated |
    | refCount     = Not allocated |
    | tstRefCount  = Not allocated |
    | lineAdmin    = Not allocated |
    | lineAlloc    = Not allocated |
    | shmVersId    = Not allocated |
    | shmRefCount  = Not allocated |
    | shmIsReadOnly = Not allocated |
    | >>>>> 1st level extension part <<<<< |
    | regHook      = 0x00000000 |
    | collHook     = 0x00000000 |
    | ext2         = 0xC0D90EA0 |
    | >>>>> 2nd level extension part <<<<< |
    | tabhBack     = 0x101520A0 |
    | delta_head   = 0100000069000000E30000002C00000004CB0000F01200007C0000000100000005000000 |
    | pb_func      = 0x00000000 |
    | pb_handle    = 0x00000000 |
    | C_T_ELTDIR[] |
    | Table IT_3894[98x203] |
    | FUNCTION-POOL=RZX0FORM=RSZ_X_COMPONENT_SET_NEWDATA=%_%_C_T_ELTDIR |
    | Table reference: 339 |
    | TABH+  0(20) = 48A01EA0A89F1EA00000000053010000360F0000 |
    | TABH+ 20(20) = 62000000CB000000FFFFFFFF04CB0000F8100000 |
    | TABH+ 40( 8) = 10000000C1248101 |
    | store        = 0x48A01EA0 |
    | ext1         = 0xA89F1EA0 |
    | shmId        = 0     (0x00000000) |
    | id           = 339   (0x53010000) |
    | label        = 3894  (0x360F0000) |
    | fill         = 98    (0x62000000) |
    | leng         = 203   (0xCB000000) |
    | loop         = -1    (0xFFFFFFFF) |
    | xtyp         = TYPE#000067 |
    | occu         = 16    (0x10000000) |
    | access       = 1     (ItAccessStandard) |
    | idxKind      = 0     (ItIndexNone) |
    | uniKind      = 2     (ItUniqueNon) |
    | keyKind      = 1     (default) |
    | cmpMode      = 2     (cmpSingleMcmpR) |
    | occu0        = 1 |
    | groupCntl    = 0 |
    | rfc          = 1 |
    | unShareable  = 0 |
    | mightBeShared = 0 |
    | sharedWithShmTab = 0 |
    | isShmLockId  = 0 |
    | gcKind       = 0 |
    | isUsed       = 1 |
    | isCtfyAble   = 1 |
    | >>>>> Shareable Table Header Data <<<<< |
    | tabi         = 0x883C39A0 |
    | pgHook       = 0x88A01EA0 |
    | idxPtr       = 0x00000000 |
    | shmTabhSet   = 0x00000000 |
    | id           = 2915  (0x630B0000) |
    | refCount     = 0     (0x00000000) |
    | tstRefCount  = 0     (0x00000000) |
    | lineAdmin    = 112   (0x70000000) |
    | lineAlloc    = 112   (0x70000000) |
    | shmVersId    = 0     (0x00000000) |
    | shmRefCount  = 1     (0x01000000) |
    | >>>>> 1st level extension part <<<<< |
    | regHook      = 0x00000000 |
    | collHook     = 0x00000000 |
    | ext2         = 0x609F1EA0 |
    | >>>>> 2nd level extension part <<<<< |
    | tabhBack     = 0xC01620A0 |
    | delta_head   = 010000006A000000E80000002700000004CB000030110000CB0000000100000005000000 |
    | pb_func      = 0x00000000 |
    | pb_handle    = 0x00000000 |
    | C_T_ELTPRIO[] |
    | Table IT_3895[77x150] |
    | FUNCTION-POOL=RZX0FORM=RSZ_X_COMPONENT_SET_NEWDATA=%_%_C_T_ELTPRIO |
    | Table reference: 341 |
    | TABH+  0(20) = 30A11EA010A01EA00000000055010000370F0000 |
    | TABH+ 20(20) = 4D00000096000000FFFFFFFF04CB000048120000 |
    | TABH+ 40( 8) = 10000000C1248101 |
    | store        = 0x30A11EA0 |
    | ext1         = 0x10A01EA0 |
    | shmId        = 0     (0x00000000) |
    | id           = 341   (0x55010000) |
    | label        = 3895  (0x370F0000) |
    | fill         = 77    (0x4D000000) |
    | leng         = 150   (0x96000000) |
    | loop         = -1    (0xFFFFFFFF) |
    | xtyp         = TYPE#000073 |
    | occu         = 16    (0x10000000) |
    | access       = 1     (ItAccessStandard) |
    | idxKind      = 0     (ItIndexNone) |
    | uniKind      = 2     (ItUniqueNon) |
    | keyKind      = 1     (default) |
    | cmpMode      = 2     (cmpSingleMcmpR) |
    | occu0        = 1 |
    | groupCntl    = 0 |
    | rfc          = 1 |
    | unShareable  = 0 |
    | mightBeShared = 0 |
    | sharedWithShmTab = 0 |
    | isShmLockId  = 0 |
    | gcKind       = 0 |
    | isUsed       = 1 |
    | isCtfyAble   = 1 |
    | >>>>> Shareable Table Header Data <<<<< |
    | tabi         = 0x889539A0 |
    | pgHook       = 0x70A11EA0 |
    | idxPtr       = 0x00000000 |
    | shmTabhSet   = 0x00000000 |
    | id           = 2917  (0x650B0000) |
    | refCount     = 0     (0x00000000) |
    | tstRefCount  = 0     (0x00000000) |
    | lineAdmin    = 112   (0x70000000) |
    | lineAlloc    = 112   (0x70000000) |
    | shmVersId    = 0     (0x00000000) |
    | shmRefCount  = 1     (0x01000000) |
    | >>>>> 1st level extension part <<<<< |
    | regHook      = 0x00000000 |
    | collHook     = 0x00000000 |
    | ext2         = 0xC89F1EA0 |
    | >>>>> 2nd level extension part <<<<< |
    | tabhBack     = 0xC01720A0 |
    | delta_head   = 010000006B000000E20000002D00000004CB000080120000960000000100000005000000 |
    | pb_func      = 0x00000000 |
    | pb_handle    = 0x00000000 |
    | C_T_ELTPROP[] |
    | Table IT_3896[98x695] |
    | FUNCTION-POOL=RZX0FORM=RSZ_X_COMPONENT_SET_NEWDATA=%_%_C_T_ELTPROP |
    | Table reference: 344 |
    | TABH+  0(20) = 18A21EA0C8B139A00000000058010000380F0000 |
    | TABH+ 20(20) = 62000000B7020000FFFFFFFF04CB0000D8110000 |
    | TABH+ 40( 8) = 10000000C1248101 |
    | store        = 0x18A21EA0 |
    | ext1         = 0xC8B139A0 |
    | shmId        = 0     (0x00000000) |
    | id           = 344   (0x58010000) |
    | label        = 3896  (0x380F0000) |
    | fill         = 98    (0x62000000) |
    | leng         = 695   (0xB7020000) |
    | loop         = -1    (0xFFFFFFFF) |
    | xtyp         = TYPE#000071 |
    | occu         = 16    (0x10000000) |
    | access       = 1     (ItAccessStandard) |
    | idxKind      = 0     (ItIndexNone) |
    | uniKind      = 2     (ItUniqueNon) |
    | keyKind      = 1     (default) |
    | cmpMode      = 2     (cmpSingleMcmpR) |
    | occu0        = 1 |
    | groupCntl    = 0 |
    | rfc          = 1 |
    | unShareable  = 0 |
    | mightBeShared = 0 |
    | sharedWithShmTab = 0 |
    | isShmLockId  = 0 |
    | gcKind       = 0 |
    | isUsed       = 1 |
    | isCtfyAble   = 1 |
    | >>>>> Shareable Table Header Data <<<<< |
    | tabi         = 0x48FC39A0 |
    | pgHook       = 0x58A21EA0 |
    | idxPtr       = 0x00000000 |
    | shmTabhSet   = 0x00000000 |
    | id           = 2919  (0x670B0000) |
    | refCount     = 0     (0x00000000) |
    | tstRefCount  = 0     (0x00000000) |
    | lineAdmin    = 128   (0x80000000) |
    | lineAlloc    = 112   (0x70000000) |
    | shmVersId    = 0     (0x00000000) |
    | shmRefCount  = 1     (0x01000000) |
    | >>>>> 1st level extension part <<<<< |
    | regHook      = 0x00000000 |
    | collHook     = 0x00000000 |
    | ext2         = 0xB0A01EA0 |
    | >>>>> 2nd level extension part <<<<< |
    | tabhBack     = 0x28DA0EA0 |
    | delta_head   = 010000006C000000E10000002E00000004CB000010120000B70200000100000005000000 |
    | pb_func      = 0x00000000 |
    | pb_handle    = 0x00000000 |
    | C_T_ELTTXT[] |
    | Table IT_3902[0x111] |
    | FUNCTION-POOL=RZX0FORM=RSZ_X_COMPONENT_SET_NEWDATA=%_%_C_T_ELTTXT |
    | Table reference: 349 |
    | TABH+  0(20) = 0000000068F73AA0000000005D0100003E0F0000 |
    | TABH+ 20(20) = 000000006F000000FFFFFFFF04CB000018170000 |
    | TABH+ 40( 8) = 10000000C1248001 |
    | store        = 0x00000000 |
    | ext1         = 0x68F73AA0 |
    | shmId        = 0     (0x00000000) |
    | id           = 349   (0x5D010000) |
    | label        = 3902  (0x3E0F0000) |
    | fill         = 0     (0x00000000) |
    | leng         = 111   (0x6F000000) |
    | loop         = -1    (0xFFFFFFFF) |
    | xtyp         = TYPE#000095 |
    | occu         = 16    (0x10000000) |
    | access       = 1     (ItAccessStandard) |
    | idxKind      = 0     (ItIndexNone) |
    | uniKind      = 2     (ItUniqueNon) |
    | keyKind      = 1     (default) |
    | cmpMode      = 2     (cmpSingleMcmpR) |
    | occu0        = 1 |
    | groupCntl    = 0 |
    | rfc          = 0 |
    | unShareable  = 0 |
    | mightBeShared = 0 |
    | sharedWithShmTab = 0 |
    | isShmLockId  = 0 |
    | gcKind       = 0 |
    | isUsed       = 1 |
    | isCtfyAble   = 1 |
    | >>>>> Shareable Table Header Data <<<<< |
    | tabi         = Not allocated |
    | pghook       = Not allocated |
    | idxPtr       = Not allocated |
    | shmTabhSet   = Not allocated |
    | id           = Not allocated |
    | refCount     = Not allocated |
    | tstRefCount  = Not allocated |
    | lineAdmin    = Not allocated |
    | lineAlloc    = Not allocated |
    | shmVersId    = Not allocated |
    | shmRefCount  = Not allocated |
    | shmIsReadOnly = Not allocated |
    | >>>>> 1st level extension part <<<<< |
    | regHook      = 0x00000000 |
    | collHook     = 0x00000000 |
    | ext2         = 0x20F73AA0 |
    | >>>>> 2nd level extension part <<<<< |
    | tabhBack     = 0xE0F63AA0 |
    | delta_head   = 000000000000000000000000000000000000000000000000000000000000000000000000 |
    | pb_func      = 0x00000000 |
    | pb_handle    = 0x00000000 |
    | C_T_ELTXREF[] |
    | Table IT_3897[188x74] |
    | FUNCTION-POOL=RZX0FORM=RSZ_X_COMPONENT_SET_NEWDATA=%_%_C_T_ELTXREF |
    | Table reference: 340 |
    | TABH+  0(20) = 18A31EA0F8A01EA00000000054010000390F0000 |
    | TABH+ 20(20) = BC0000004A000000FFFFFFFF04CB000028130000 |
    | TABH+ 40( 8) = 10000000C1248101 |
    | store        = 0x18A31EA0 |
    | ext1         = 0xF8A01EA0 |
    | shmId        = 0     (0x00000000) |
    | id           = 340   (0x54010000) |
    | label        = 3897  (0x390F0000) |
    | fill         = 188   (0xBC000000) |
    | leng         = 74    (0x4A000000) |
    | loop         = -1    (0xFFFFFFFF) |
    | xtyp         = TYPE#000077 |
    | occu         = 16    (0x10000000) |
    | access       = 1     (ItAccessStandard) |
    | idxKind      = 0     (ItIndexNone) |
    | uniKind      = 2     (ItUniqueNon) |
    | keyKind      = 1     (default) |
    | cmpMode      = 2     (cmpSingleMcmpR) |
    | occu0        = 1 |
    | groupCntl    = 0 |
    | rfc          = 1 |
    | unShareable  = 0 |
    | mightBeShared = 0 |
    | sharedWithShmTab = 0 |
    | isShmLockId  = 0 |
    | gcKind       = 0 |
    | isUsed       = 1 |
    | isCtfyAble   = 1 |
    | >>>>> Shareable Table Header Data <<<<< |
    | tabi         = 0xC8D53AA0 |
    | pgHook       = 0x58A31EA0 |
    | idxPtr       = 0x00000000 |
    | shmTabhSet   = 0x00000000 |
    | id           = 2921  (0x690B0000) |
    | refCount     = 0     (0x00000000) |
    | tstRefCount  = 0     (0x00000000) |
    | lineAdmin    = 432   (0xB0010000) |
    | lineAlloc    = 304   (0x30010000) |
    | shmVersId    = 0     (0x00000000) |
    | shmRefCount  = 1     (0x01000000) |
    | >>>>> 1st level extension part <<<<< |
    | regHook      = 0x00000000 |
    | collHook     = 0x00000000 |
    | ext2         = 0x98A11EA0 |
    | >>>>> 2nd level extension part <<<<< |
    | tabhBack     = 0x801720A0 |
    | delta_head   = 010000006D000000EA0000002500000004CB0000601300004A0000000100000005000000 |
    | pb_func      = 0x00000000 |
    | pb_handle    = 0x00000000 |
    | C_T_RANGE[] |
    | Table IT_3898[258x579] |
    | FUNCTION-POOL=RZX0FORM=RSZ_X_COMPONENT_SET_NEWDATA=%_%_C_T_RANGE |
    | Table reference: 345 |
    | TABH+  0(20) = B8F33AA088A31EA000000000590100003A0F0000 |
    | TABH+ 20(20) = 0201000043020000FFFFFFFF04CB0000E8140000 |
    | TABH+ 40( 8) = 10000000C1248101 |
    | store        = 0xB8F33AA0 |
    | ext1         = 0x88A31EA0 |
    | shmId        = 0     (0x00000000) |
    | id           = 345   (0x59010000) |
    | label        = 3898  (0x3A0F0000) |
    | fill         = 258   (0x02010000) |
    | leng         = 579   (0x43020000) |
    | loop         = -1    (0xFFFFFFFF) |
    | xtyp         = TYPE#000085 |
    | occu         = 16    (0x10000000) |
    | access       = 1     (ItAccessStandard) |
    | idxKind      = 0     (ItIndexNone) |
    | uniKind      = 2     (ItUniqueNon) |
    | keyKind      = 1     (default) |
    | cmpMode      = 2     (cmpSingleMcmpR) |
    | occu0        = 1 |
    | groupCntl    = 0 |
    | rfc          = 1 |
    | unShareable  = 0 |
    | mightBeShared = 0 |
    | sharedWithShmTab = 0 |
    | isShmLockId  = 0 |
    | gcKind       = 0 |
    | isUsed       = 1 |
    | isCtfyAble   = 1 |
    | >>>>> Shareable Table Header Data <<<<< |
    | tabi         = 0x580140A0 |
    | pgHook       = 0xF8F33AA0 |
    | idxPtr       = 0x00000000 |
    | shmTabhSet   = 0x00000000 |
    | id           = 2923  (0x6B0B0000) |
    | refCount     = 0     (0x00000000) |
    | tstRefCount  = 0     (0x00000000) |
    | lineAdmin    = 512   (0x00020000) |
    | lineAlloc    = 272   (0x10010000) |
    | shmVersId    = 0     (0x00000000) |
    | shmRefCount  = 1     (0x01000000) |
    | >>>>> 1st level extension part <<<<< |
    | regHook      = 0x00000000 |
    | collHook     = 0x00000000 |
    | ext2         = 0xD82C39A0 |
    | >>>>> 2nd level extension part <<<<< |
    | tabhBack     = 0x98A21EA0 |
    | delta_head   = 010000006E000000E90000002600000004CB000020150000430200000100000005000000 |
    | pb_func      = 0x00000000 |
    | pb_handle    = 0x00000000 |
    | C_T_SELECT[] |
    | Table IT_3899[239x116] |
    | FUNCTION-POOL=RZX0FORM=RSZ_X_COMPONENT_SET_NEWDATA=%_%_C_T_SELECT |
    | Table reference: 346 |
    | TABH+  0(20) = 20F53AA0E0A11EA0000000005A0100003B0F0000 |
    | TABH+ 20(20) = EF00000074000000FFFFFFFF04CB000078140000 |
    | TABH+ 40( 8) = 10000000C1248101 |
    | store        = 0x20F53AA0 |
    | ext1         = 0xE0A11EA0 |
    | shmId        = 0     (0x00000000) |
    | id           = 346   (0x5A010000) |
    | label        = 3899  (0x3B0F0000) |
    | fill         = 239   (0xEF000000) |
    | leng         = 116   (0x74000000) |
    | loop         = -1    (0xFFFFFFFF) |
    | xtyp         = TYPE#000083 |
    | occu         = 16    (0x10000000) |
    | access       = 1     (ItAccessStandard) |
    | idxKind      = 0     (ItIndexNone) |
    | uniKind      = 2     (ItUniqueNon) |
    | keyKind      = 1     (default) |
    | cmpMode      = 2     (cmpSingleMcmpR) |
    | occu0        = 1 |
    | groupCntl    = 0 |
    | rfc          = 1 |
    | unShareable  = 0 |
    | mightBeShared = 0 |
    | sharedWithShmTab = 0 |
    | isShmLockId  = 0 |
    | gcKind       = 0 |
    | isUsed       = 1 |
    | isCtfyAble   = 1 |
    | >>>>> Shareable Table Header Data <<<<< |
    | tabi         = 0x202D39A0 |
    | pgHook       = 0x60F53AA0 |
    | idxPtr       = 0x00000000 |
    | shmTabhSet   = 0x00000000 |
    | id           = 2925  (0x6D0B0000) |
    | refCount     = 0     (0x00000000) |
    | tstRefCount  = 0     (0x00000000) |
    | lineAdmin    = 432   (0xB0010000) |
    | lineAlloc    = 304   (0x30010000) |
    | shmVersId    = 0     (0x00000000) |
    | shmRefCount  = 1     (0x01000000) |
    | >>>>> 1st level extension part <<<<< |
    | regHook      = 0x00000000 |
    | collHook     = 0x00000000 |
    | ext2         = 0x98F43AA0 |
    | >>>>> 2nd level extension part <<<<< |
    | tabhBack     = 0xD8A21EA0 |
    | delta_head   = 010000006F000000CD0000000200000004CB0000B0140000740000000100000005000000 |
    | pb_func      = 0x00000000 |
    | pb_handle    = 0x00000000 |
    | C_T_UID_SERVER[] |
    | Table IT_3900[2x50] |
    | FUNCTION-POOL=RZX0FORM=RSZ_X_COMPONENT_SET_NEWDATA=%_%_C_T_UID_SERVER |
    | Table reference: 347 |
    | TABH+  0(20) = 60F33AA0D8F53AA0000000005B0100003C0F0000 |
    | TABH+ 20(20) = 0200000032000000FFFFFFFF04CB0000A8160000 |
    | TABH+ 40( 8) = 02000000C1248101 |
    | store        = 0x60F33AA0 |
    | ext1         = 0xD8F53AA0 |
    | shmId        = 0     (0x00000000) |
    | id           = 347   (0x5B010000) |
    | label        = 3900  (0x3C0F0000) |
    | fill         = 2     (0x02000000) |
    | leng         = 50    (0x32000000) |
    | loop         = -1    (0xFFFFFFFF) |
    | xtyp         = TYPE#000093 |
    | occu         = 2     (0x02000000) |
    | access       = 1     (ItAccessStandard) |
    | idxKind      = 0     (ItIndexNone) |
    | uniKind      = 2     (ItUniqueNon) |
    | keyKind      = 1     (default) |
    | cmpMode      = 2     (cmpSingleMcmpR) |
    | occu0        = 1 |
    | groupCntl    = 0 |
    | rfc          = 1 |
    | unShareable  = 0 |
    | mightBeShared = 0 |
    | sharedWithShmTab = 0 |
    | isShmLockId  = 0 |
    | gcKind       = 0 |
    | isUsed       = 1 |
    | isCtfyAble   = 1 |
    | >>>>> Shareable Table Header Data <<<<< |
    | tabi         = 0xE8F23AA0 |
    | pgHook       = 0x00000000 |
    | idxPtr       = 0x00000000 |
    | shmTabhSet   = 0x00000000 |
    | id           = 2930  (0x720B0000) |
    | refCount     = 0     (0x00000000) |
    | tstRefCount  = 0     (0x00000000) |
    | lineAdmin    = 2     (0x02000000) |
    | lineAlloc    = 2     (0x02000000) |
    | shmVersId    = 0     (0x00000000) |
    | shmRefCount  = 1     (0x01000000) |
    | >>>>> 1st level extension part <<<<< |
    | regHook      = 0x00000000 |
    | collHook     = 0x00000000 |
    | ext2         = 0x90F53AA0 |
    | >>>>> 2nd level extension part <<<<< |
    | tabhBack     = 0xE0F43AA0 |
    | delta_head   = 0100000070000000C50000000A00000004CB0000E0160000320000000100000005000000 |
    | pb_func      = 0x00000000 |
    | pb_handle    = 0x00000000 |
    | C_T_VAR[] |
    | Table IT_3901[2x644] |
    | FUNCTION-POOL=RZX0FORM=RSZ_X_COMPONENT_SET_NEWDATA=%_%_C_T_VAR |
    | Table reference: 348 |
    | TABH+  0(20) = A0F63AA080F63AA0000000005C0100003D0F0000 |
    | TABH+ 20(20) = 0200000084020000FFFFFFFF04CB000038160000 |
    | TABH+ 40( 8) = 10000000C1248101 |
    | store        = 0xA0F63AA0 |
    | ext1         = 0x80F63AA0 |
    | shmId        = 0     (0x00000000) |
    | id           = 348   (0x5C010000) |
    | label        = 3901  (0x3D0F0000) |
    | fill         = 2     (0x02000000) |
    | leng         = 644   (0x84020000) |
    | loop         = -1    (0xFFFFFFFF) |
    | xtyp         = TYPE#000091 |
    | occu         = 16    (0x10000000) |
    | access       = 1     (ItAccessStandard) |
    | idxKind      = 0     (ItIndexNone) |
    | uniKind      = 2     (ItUniqueNon) |
    | keyKind      = 1     (default) |
    | cmpMode      = 2     (cmpSingleMcmpR) |
    | occu0        = 1 |
    | groupCntl    = 0 |
    | rfc          = 1 |
    | unShareable  = 0 |
    | mightBeShared = 0 |
    | sharedWithShmTab = 0 |
    | isShmLockId  = 0 |
    | gcKind       = 0 |
    | isUsed       = 1 |
    | isCtfyAble   = 1 |
    | >>>>> Shareable Table Header Data <<<<< |
    | tabi         = 0xB8DD42A0 |
    | pgHook       = 0x00000000 |
    | idxPtr       = 0x00000000 |
    | shmTabhSet   = 0x00000000 |
    | id           = 2926  (0x6E0B0000) |
    | refCount     = 0     (0x00000000) |
    | tstRefCount  = 0     (0x00000000) |
    | lineAdmin    = 16    (0x10000000) |
    | lineAlloc    = 16    (0x10000000) |
    | shmVersId    = 0     (0x00000000) |
    | shmRefCount  = 1     (0x01000000) |
    | >>>>> 1st level extension part <<<<< |
    | regHook      = 0x00000000 |
    | collHook     = 0x00000000 |
    | ext2         = 0x38F63AA0 |
    | >>>>> 2nd level extension part <<<<< |
    | tabhBack     = 0xF8F53AA0 |
    | delta_head   = 0100000071000000EC0000002300000004CB000070160000840200000100000005000000 |
    | pb_func      = 0x00000000 |
    | pb_handle    = 0x00000000 |
    | %_DUMMY$$ |
    |  |
    | 2222 |
    | 0000 |
    | SY-REPID |
    | SAPLRZX0 |
    | 5454555322222222222222222222222222222222 |
    | 310C2A8000000000000000000000000000000000 |
    | <L_TRACE_MAX_MESSAGE_TYPE> |
    | ??? |
    | ?????? |
    | ?????? |
    | SYST |
    | 4###########################################################################y################# |
    | 3000000000000000000000000000000000000000000000000000000000000000000000000000700000000000000000 |
    | 400000000000800000000000A000000000000000000010001000000010000000000000000000900000000000000000 |
    | G_CS_UID_LOOKUP_WRONG_DEFTP |
    | ####ER9                  171 |
    | 1000453222222222222222222333 |
    | C000529000000000000000000171 |
    | G_CS_ELEMENT_LOCKED |
    | ####ER9                  113 |
    | 0000453222222222222222222333 |
    | D000529000000000000000000113 |
    | L_R_FUNCTION_MODULE_EXCEPTION |
    |
    1000E000
    A0005000
    SPACE
    2
    0
    L_TRACE_MAX_MESSAGE_TYPE
    2
    0
    SY-ONCOM
    X
    5
    8
    %_SPACE
    2
    0
    No.       3 Ty.          FORM
    Name  RSZ_X_COMPONENT_SET_NEW
    CL_RSTT_TRACE=>N_R_TRACEREF
    F0000000
    F0000000
    RSBBS_C_TYPE-ABAP_QUERY
    A
    4
    1
    %_%_I_QD_VERSION
    700
    33322
    70000
    %_%_I_COMPUID
    F3IH9GRA1X9X7DRPIYFPE1QP7
    4344345435353455454543553
    6398972118987420996051107
    %_%_I_COPY_MODE
    2
    0
    CL_GUI_TEXTEDIT=>ABAP_COMMENTLINE_IDENTIFIER
    %_%_I_LANGUAGE
    S
    5
    3
    %_%_I_NODE
    0000000000
    3333333333
    0000000000
    %_%_I_NO_TRANSPORT
    2
    0
    %_%_I_OBJVERS
    A
    4
    1
    %_%_I_ROLE
    222222222222222222222222222222
    000000000000000000000000000000
    G_CS_NO_IOBJ_F4_AVAILABLE
    ####SR9                  103
    0000553222222222222222222333
    8000329000000000000000000103
    %_%_E_GENUNIID
    2222222222222222222222222
    0000000000000000000000000
    CL_GUI_TEXTEDIT=>BOOL_INITIAL
    %_%_E_SUBRC
    0
    0000
    0000
    %_%_C_T_CALC
    Table IT_3889[5x158]
    %_%_C_T_CELL
    Table IT_3890[0x76]
    %_%_C_T_COMPDIR
    Table IT_3891[7x169]
    %_%_C_T_COMPIC
    Table IT_3892[5x81]
    %_%_C_T_ELTATTR
    Table IT_3893[0x124]
    CL_BSP_MESSAGES=>CO_SEVERITY_ERROR
    %_%_C_T_ELTDIR
    Table IT_3894[98x203]
    %_%_C_T_ELTPRIO
    Table IT_3895[77x150]

    Hi Gaurav 
    I already locked for a OSS note, but i could not find the answer
    Please, Could you tell me how you solve the problem?
    Thanks
    Ariel

  • SAP Web Service error text : The database returned a value containing an error , type  CX_SY_OPEN_SQL_DB

    Hello Guru's,
    we are creating sales order in SAP from a quote created in .NET,  through Web Service created in SAP, and consumed in .NET.
    When ever a order is created in SAP for a given quote, SAP returns the sales order number to .NET.
    Orders are getting created as expected, but once in a while we are getting the following error from webservice :
    Web service processing error; more details in the web service error log on provider side (UTC timestamp 20140609173429; Transaction ID 4DFCEFE33301F1EBB5CE00155D0B4530)
    But the problem is order is getting created in SAP for the perticular quote for which we are getting the above error and this order number is not getting returned to .NET.
    Upon analysis in TCODE  SRT_UTIL for the above transaction ID, has the following details , which are hardly help full to resolve the error.
    ----TYPE                                  CX_SY_OPEN_SQL_DB
    ----ERROR_TEXT                   The database returned a value containing an error
    ----CX_SY_NO_HANDLER
    -----CLASSNAME                     CX_SY_OPEN_SQL_DB
    This Exception raised by Web Service application
    Could you please help in resolving this issue or alteast provide an approach for the same.
    Thank you,
    Suresh.

    Thank you Bhaskar,
    How can we clarify whether the error is from SAP or Web part.
    I have checked ST22, but there is not entry for the perticular  exception transaction ID
    My exception time stamp is
    -------------------START-------------6/9/2014 1:34:33 PM
    Error :Web service processing error; more details in the web service error log on provider side (UTC timestamp 20140609173429; Transaction ID 4DFCEFE33301F1EBB5CE00155D0B4530)
    -------------------END-------------6/9/2014 1:34:33 PM
    In al11, i found the following for the perticular exception time stamp
    **** Trace file opened at 20140609 133431 Eastern Daylight Time, by disp+work
    **** Versions SAP-REL 720,0,500 RFC-VER U 3 1442251 MT-SL
    XRFC> Begin of user trace
    XRFC> ---------------------------------------------------------------------
    XRFC>                                                                     <
    XRFC> TRACE SOAP RUNTIME - header                                         <
    XRFC>                                                                     <
    XRFC> ------------------------------------------------------------------  <
    XRFC> REQ_SIZE   : 2685                                                   <
    XRFC> RESP_SIZE  : 0                                                      <
    XRFC> PARENT_ID  : ROOT_CALL_ID                                           <
    XRFC> TRC_KEY    : 40FCEFE3BD6EF184B5CE00155D0B4530                       <
    XRFC> REQ_BASED  :                                                        <
    XRFC> SESSION_ID : 0003925540FCEFE3BD6EF17DB5CE00155D0B4530               <
    XRFC> TS_CALL    : 20140609173408.2880000                                 <
    XRFC> SY_UNAME   :                                            <
    XRFC> HOSTNAME   :                                              <
    XRFC> SY_SID     : PRD                                                    <
    XRFC> SY_MANDT   : 300                                                    <
    XRFC> SYS_NR     : 19                                                     <
    XRFC> APPLSERVER :                                      <
    XRFC> ISPRESCHED : X                                                      <
    XRFC> DURATION   : 21810                                                  <
    XRFC> NETHDRTIME : 21810                                                  <
    XRFC> CALL_STATE : 2                                                      <
    XRFC> ERRORTYPE  : APPLFAIL                                               <
    XRFC> ERRORAREA  : APPL                                                   <
    XRFC> CTXDP_TYPE : SOAP_RUNTIME                                           <
    XRFC> SYNC_ASYNC : S                                                      <
    XRFC> LOCATION   : P                                                      <
    XRFC> DIRECTION  : I                                                      <
    XRFC> REQ_ID     : 91C57815916E421CA9F3D652FFACE9C7                       <
    XRFC> RESP_ID    : 00155D0B45301EE3BBFF89A0267EB5CE                       <
    XRFC> MSG_STATE  : 114                                                    <
    XRFC> IF_NAME_I  : ZSD_CS_CREATE_SALESORDER_SERVI                         <
    XRFC> IF_NS_E    : urn:sap-com:document:sap:soap:functions:mc-style       <
    XRFC> IF_NAME_E  : ZSD_CS_CREATE_SALESORDER_SERVI                         <
    XRFC> ISSHORTCUT :                                                        <
    XRFC> TRC_PATT   : WSTEST                                                 <
    XRFC> TRC_SSID   : PRD_19                                                 <
    XRFC> TRC_USER   :                                           <
    XRFC> TRC_TS     : 20140609173409                                         <
    XRFC> TRC_COUNT  : 99                                                     <
    XRFC> TRC_EXT    :                                                        <
    XRFC> COMPLETE   : OK                                                     <
    XRFC> CALLEDPROG : ZSD_CS_CREATE_SALESORDER_SERVI                         <
    XRFC> SOAP_APPLI : urn:sap-com:soap:runtime:application:rfc:710           <
    XRFC> CONF_ID    : 00155D0B45301EE3AEFDAD78756555CE                       <
    XRFC> BIND_ID    : 00155D0B45301EE3AEFDAD787565B5CE                       <
    XRFC> OP_NAME    : ZsdCsCreateSalesorder                                  <
    XRFC> COMM_PATRN : Method:ZsdCsCreateSalesorder                           <
    XRFC> OP_NS      : urn:sap-com:document:sap:soap:functions:mc-style       <
    XRFC> REMADDRESS : 172.16.11.43                                           <
    XRFC> DT_OBJ     : ZSD_CS_CREATE_SALESORDER_SERVI                         <
    XRFC> MEMCONSUMP : 296291                                                 <
    XRFC> WSHOST     :                                                        <
    XRFC> WSPORT     :                                                        <
    XRFC> WSPROT     :                                                        <
    XRFC> WSCLIENT   :                                                        <
    XRFC> WSPATH     :                                                        <
    XRFC> PXYHOST    :                                                        <
    XRFC> PXYPORT    :                                                        <
    XRFC> USEDRFCDES :                                                        <
    XRFC> BONAME     :                                                        <
    XRFC> PROCCOMP   :                                                        <
    XRFC> DEPLOYUNIT :                                                        <
    XRFC> ------------------------------------------------------------------  <
    XRFC>                                                                     <
    XRFC> TRACE SOAP RUNTIME - trace records                                  <
    XRFC>                                                                     <
    XRFC> ------------------------------------------------------------------  <
    XRFC> E SOAP_RUNTIME 20140609173429.7400000 : CL_SOAP_RUNTIME_SERVER      <
    XRFC> ->EXECUTE_PROCESSING Exception handling for IF "ZSD_CS_CREATE       <
    XRFC> _SALESORDER_SERVI" OP name "ZsdCsCreateSalesorder" MSG ID           <
    XRFC> "91C57815916E421CA9F3D652FFACE9C7" user "STULZWEBSERV"              <
    XRFC>                                                                     <
    XRFC>                                                                     <
    XRFC> E SOAP_RUNTIME 20140609173429.7240000 : CL_SOAP_RUNTIME_SERVER      <
    XRFC> ->EXECUTE_PROCESSING CX_SOAP_ROOT : An exception has occurred. |    <
    XRFC> program: CL_SOAP_RUNTIME_ROOT==========CP include: CL_SOAP          <
    XRFC> _RUNTIME_ROOT==========CM004 line: 120                              <
    XRFC>                                                                     <
    XRFC>                                                                     <
    XRFC> E SOAP_RUNTIME 20140609173429.7400000 : CL_SOAP_RUNTIME_SERVER      <
    XRFC> ->EXECUTE_PROCESSING CX_SY_NO_HANDLER : An exception with the type  <
    XRFC> CX_SY_OPEN_SQL_DB occurred, but was neither handled locally, nor    <
    XRFC> declared in a RAISING clause | program: SAPLSTXD include: LSTXDFDB  <
    XRFC> line: 200                                                           <
    XRFC>                                                                     <
    XRFC>                                                                     <
    XRFC> E SOAP_RUNTIME 20140609173429.7400000 : CL_SOAP_RUNTIME_SERVER      <
    XRFC> ->EXECUTE_PROCESSING CX_SY_OPEN_SQL_DB : The database returned a    <
    XRFC> value containing an error | program: SAPLSTXD include: LSTXDFDB     <
    XRFC> line: 227                                                           <
    XRFC>                                                                     <
    XRFC> ---------------------------------------------------------------------
    XRFC> End of user trace

Maybe you are looking for

  • PSE 8 for Mac won't Install; running Snow Leopard 10.6.2

    Hi, When PSE 8 was released for the Mac, I bought a copy from Amazon.  I am running Snow Leopard 10.6.2 on two 24" iMacs and one MBP 15.3.  The Adobe installer would hang about three quarters through the installation.  I'm running PSE 6 for Mac witho

  • Bad playback on Apple TV

    I'm having horrible, stuttering, non-responsive playback with movies that are NOT streaming to my apple tv, they are stored on it. WHY?

  • RBDAPP01 fails when packetsize is changed from 1 to 35

    Hi, For posting J3amat Idocs parallely, RBDAPP01 is executed in background with packet size 35. It failes with an exception PARM_NOT_VALID while reading the function J_3A1_LESEN_MARC_SINGLE which is called by the program RBDAPP01. When changed back t

  • How do we measure the TAT in a worklist app

    I need to displayt the Turn Around Time to the end user in the worklist app. Any hints on how it can be done. Thanx Ashutosh

  • Installing Solaris 9 with other Operating Systems x86

    Hi, I am new to Solaris world. I want to install solaris 9 on my home computer on which I've already installed Windows XP and RedHat Linux 9. I have a few questions regarding the installation process. (a) Is a primary partition necessary for installi