DTP Short dump issue

Hi Expert,
I face a DTP shortdump issue on loading data from PSA to DSO
The DSO is write optimize.
DTP is using symantic loading and support 3 processor, pack size is default
Situation is as below:
1. This issue occurs every two days. In some situation, it will occur everday
2. The DTP will face short dump. Then when we rerun the DTP, everything goes will
3. Not all the system face this issue (for example, we have dev/qas/prd, this issue cannot be reproduced in qas)
Below is the shortdump point in ST22
   when '3'.
      select single * from rsmonicdp into l_s_monicdp where
             rnr   = l_rnr and
             icube = p_ods and
             dp_nr = i_datapakid.
      if sy-subrc <> 0.
        data: l_s_iccont type rsiccont.
        data: l_s_reqdone    type rsreqdone.
        select single * from rsreqdone into l_s_reqdone where
               rnr = l_rnr.
        if sy-subrc <> 0.
          message x000.
        endif.
        l_s_reqdone-datum = l_s_reqdone-datum + 3.
        if l_s_reqdone-datum < sy-datum.
          select single * from rsiccont into l_s_iccont where
                 rnr   = l_rnr and
                 icube = p_ods.
          if sy-subrc <> 0.
            exit.
          else.
            message x000.
          endif.
        else.
           message x000. (Shortdump here)
        endif.
      endif.
      l_s_monicdp-status     = icon_red_light.
Could you kindly let me know you face simulation issue before and possible solution?
Thanks and best regards
Alex yang

Hi KP,
Thanks for your information.
Please check below information in ST22 side
Error analysis
    Short text of error message:
Status Manager *****
    Long text of error message:
    Technical information about the message:
    Message class....... "RSSTATMAN"
    Number.............. 000
    Variable 1.......... " "
    Variable 2.......... " "
    Variable 3.......... " "
    Variable 4.......... " "
How to correct the error
    Probably the only way to eliminate the error is to correct the program.
    If the error occures in a non-modified SAP program, you may be able to
    find an interim solution in an SAP Note.
    If you have access to SAP Notes, carry out a search with the following
    keywords:
    "MESSAGE_TYPE_X" " "
    "CL_RSSM_STATMAN_TARGET_ODSO===CP" or "CL_RSSM_STATMAN_TARGET_ODSO===CM007"
    "IF_RSBK_DATAPACKAGE_OBSERVER~UPDATE_STATUS_TABLES"
BTW, do you think this issue will be related to larger data volum in DSO side?
Thanks and best regards
Alex yang

Similar Messages

  • ALV GRID short dump issue

    could anybody advice, ALV GRID FM(field catalog issue)is getting short dump, but workig fine for ALV LIST.
    PERFORM create_field_catalog USING:
        'TRAFFIC_LIGHT' ' ' 15 'Status'   'Status' ' ',
        'VKORG'     ' ' 15 'Sales Org'    'Sales Org' ' ',
        'VTWEG'     ' ' 15 'Dist Channel' 'Dist Channel' ' ',
        'KUNRG'     ' ' 15 'Payer'        'Payer' ' ',
        'PAYER'     ' ' 15 'Payer Name'   'Payer Name' ' ',
        'KUNAG'     ' ' 15 'Ship-To'      'Ship-To' ' ',
        'SHIPTO'    ' ' 15 'Ship-To Name' 'Ship-To Name' ' ',
        'SHIPTOPAR' ' ' 15 'Bill to Party' 'Bill To Party' ' ',
        'KDGRP'     ' ' 15 'Customer Grp' 'Customer Grp' ' ',
        'ZCUSTPO'   ' ' 15 'Customer PO'  'Customer PO' ' ',
        'VBELN'     ' ' 15 'Billing Doc'  'Billing Doc' ' ',
        'FKDAT'     ' ' 15 'Billing Date' 'Billing Date' ' ',
        'FKART'     ' ' 15 'Billing Type' 'Billing Type' ' ',
        'ZOUTPUT'   ' ' 15 'Output Type'  'Output Type' ' ',
        'NETWR'     ' ' 15 'Net Value'    'Net Value' 'X',
        'KWERT'     ' ' 15 'Total VAT'    'Total VAT' 'X',
        'WAERK'     ' ' 15 'Currency'     'Currency' ' ',
        'XBLNR'     ' ' 15 'Reference'    'Reference' ' ',
        'DELNO'     ' ' 15 'Delivery #'   'Delivery #' ' ',
        'TLINE'     ' ' 15 'Manifest #'   'Manifest #' ' ',
        'ZBOL'      ' ' 15 'Bill Of Ldng' 'Bill of Ldng' ' ',
        'LIFEX'     ' ' 15 'Ext Del #'    'Ext Del #' ' ',
        'POSNR'     ' ' 15 'Item'         'Item' ' ',
        'MATNR'     ' ' 18 'Material'     'Material' ' ',
        'KDMAT'     ' ' 15 'Cust Matl'    'Cust Matl' ' ',
        'WERKS'     ' ' 15 'Plant'        'Plant' ' ',
        'ZZPLAT'    ' ' 10 'Platform'     'Platform' ' ',
        'ZZPRONUM'  ' ' 10 'Program'      'Program' ' ',
        'ZZPROCODE' ' ' 10 'Prod Code'    'Prod Code' ' ',
        'FKIMG'     ' ' 15 'Qty'          'Qty' ' ',
        'VRKME'     ' ' 15 'UoM'          'UoM' ' ',
        'ARKTX'     ' ' 15 'Description'  'Description' ' ',
        'KBETR'     ' ' 15 'Price'        'Price' ' ',
        'VATRT'     ' ' 15 'VAT Rate'     'VAT Rate' ' ',
        'KWERT_D'   ' ' 15 'Item VAT'     'Item VAT' 'X',
        'NETWR_D'   ' ' 15 'Item Net Value' 'Item Net Value' 'X',
        'VGBEL'     ' ' 15 'Ref Document' 'Ref Document' ' ',
        'VGPOS'     ' ' 13 'Ref Doc Line' 'Ref Doc Line' ' ' .
    FORM create_field_catalog USING fieldname TYPE c
                                    inttype   TYPE c
                                    outputlen TYPE i
                                    coltext   TYPE c
                                    seltext   TYPE c
                                    do_sum    TYPE c.
      DATA: l_f_fieldcat TYPE slis_fieldcat_alv.
      l_f_fieldcat-fieldname    = fieldname.
      l_f_fieldcat-inttype      = inttype.
      l_f_fieldcat-outputlen    = outputlen.
      l_f_fieldcat-seltext_m    = coltext.
      l_f_fieldcat-seltext_l    = seltext.
      l_f_fieldcat-reptext_ddic = coltext.
      l_f_fieldcat-do_sum     = do_sum.
      APPEND l_f_fieldcat TO t_field_catalog.
      CLEAR l_f_fieldcat.
    ENDFORM.   "CREATE_FIELD_CATALOG
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
            EXPORTING
              i_callback_program      = v_repid
              i_callback_user_command = 'F_USER_COMMAND'
              i_grid_settings         = f_grid_settings
              is_layout               = f_grid_layout
              is_print                = f_print_settings
              i_background_id         = 'BACK'
              it_events               = t_events[]
              it_fieldcat             = t_field_catalog
              it_sort                 = t_sortcat[]
              i_default               = 'X'
              i_save                  = 'A'
              is_variant              = f_variant
            TABLES
              t_outtab                = t_output4
            EXCEPTIONS
              program_error           = 1
              OTHERS                  = 2.

    BEGIN OF t_output4 OCCURS 0,
            traffic_light TYPE c,
            vkorg LIKE vbrk-vkorg,
            vtweg LIKE vbrk-vtweg,
            kunrg LIKE vbrk-kunrg,
            payer LIKE adrc-name1,
            kunag LIKE vbrk-kunag,
            shipto LIKE adrc-name1,
            shiptopar LIKE likp-kunnr,
            kdgrp  LIKE vbrk-kdgrp,
            zcustpo LIKE vbkd-bstkd,
            vbeln LIKE vbrk-vbeln,
            fkdat LIKE vbrk-fkdat,
            fkart LIKE vbrk-fkart,
            zoutput LIKE dnast-kschl,
            netwr LIKE vbrk-netwr,
            kwert LIKE konv-kwert,
            waerk LIKE vbrk-waerk,
            xblnr LIKE vbrk-xblnr,
            delno LIKE likp-vbeln,
            t_line LIKE tline-tdline,
            zbol LIKE likp-bolnr,
            lifex LIKE likp-lifex,
            posnr LIKE vbrp-posnr,
            matnr LIKE vbrp-matnr,
            kdmat LIKE lips-kdmat,
            werks LIKE vbrp-werks,
            zzplat LIKE vbrp-zzplat,
            zzpronum LIKE vbrp-zzpronum,
            zzprocode LIKE a802-zzprocode,
            fkimg LIKE vbrp-fkimg,
            vrkme LIKE vbrp-vrkme,
            arktx LIKE vbrp-arktx,
            kbetr LIKE konv-kbetr,
            vatrt TYPE p DECIMALS 1,
            kwert_d LIKE konv-kwert,
            netwr_d LIKE vbrp-netwr,
            vgbel LIKE vbrp-vgbel,
            vgpos LIKE vbrp-vgpos,
          END OF t_output4,

  • Short dump issue while loading data

    Hello All,
    We are trying to load the data to  the cube , but every time it is throwing us a short dump with the below error.
    We have found a SAP Note as well  for the below error , Please suggest, how to implement the same.
    Error:
    Runtime Errors         CONVT_NO_NUMBER
    METHOD end_routine.
    === Segments ===
       FIELD-SYMBOLS:
         <RESULT_FIELDS>    TYPE _ty_s_TG_1.
       DATA:
         MONITOR_REC     TYPE rstmonitor.
       ... "insert your code here
    --  fill table "MONITOR" with values of structure "MONITOR_REC"
    -   to make monitor entries
       ... "to cancel the update process
        raise exception type CX_RSROUT_ABORT.
    *Fiscal year quarter addition
       loop at RESULT_PACKAGE assigning <RESULT_FIELDS>.
         if <RESULT_FIELDS>-/bic/zsp_Mon BETWEEN 1 and 3.
           CONCATENATE 'FY' <RESULT_FIELDS>-fiscper+2(2) 'Q3' INTO
           <RESULT_FIELDS>-/bic/zsp_FYQA.
         elseif <RESULT_FIELDS>-/bic/zsp_Mon BETWEEN 4 and 6.
           CONCATENATE 'FY' <RESULT_FIELDS>-fiscper+2(2) 'Q4' INTO
           <RESULT_FIELDS>-/bic/zsp_FYQA.
         elseif <RESULT_FIELDS>-/bic/zsp_Mon BETWEEN 7 and 9.
           CONCATENATE 'FY' <RESULT_FIELDS>-fiscper+2(2) 'Q1' INTO
           <RESULT_FIELDS>-/bic/zsp_FYQA.
         elseif <RESULT_FIELDS>-/bic/zsp_Mon BETWEEN 10 and 12.
           CONCATENATE 'FY' <RESULT_FIELDS>-fiscper+2(2) 'Q2' INTO
           <RESULT_FIELDS>-/bic/zsp_FYQA.
      endif.
    endloop.
    ENDDMETHOD.                    "end_routine
    THOD inverse_end_routine.
    IMPORTING

    Hi,
    As suggested by note, you need to put this code in end routine.
    Check the syntax , if error go through it and fix syntax (take help of ABAPer if required) and
    activate Transformation and DTP.
    Thank-You.
    Regards,
    VB

  • DTP -Short dump

    Hi,
    I get short dump "DUMP X000" while deleting the request from DTP.
    Thanks.

    Hi
    945944 - P9: DSO: DTP requests delete dumps with message type x000
    You may wish to check the aforementioned note.
    Hope it Helps
    Chetan
    @CP..

  • Short Dump issue

    Dear all,
    hi,
    i am working on upgrade from 4.6 to ECC6.
    during unicode this statement is not working in ZReports.
    IMPORT: it_vbrp          FROM   DATABASE indx(st) ID '1' ,
    It is giving short dump. with message When importing object "IT_VBRP", the structure did not match the
    structure of the target object. The error occurred in component
    no. 3.
    what should i do.
    any help would be fine for me.
    Thanks
    Jairaj kumar

    Dear all,
    hi,
    i am working on upgrade from 4.6 to ECC6.
    during unicode this statement is not working in ZReports.
    IMPORT: it_vbrp          FROM   DATABASE indx(st) ID '1' ,
    It is giving short dump. with message When importing object "IT_VBRP", the structure did not match the
    structure of the target object. The error occurred in component
    no. 3.
    what should i do.
    any help would be fine for me.
    Thanks
    Jairaj kumar

  • SAP Short Dumps and PCI Compliance

    We've run into an issue with our PCI Compliance audit around being able to see unencrypted credit cards in short dump messages in SAP.  Has anyone run into this issue?
    Only work around I've got at this point is to restrict all access to short dumps and require many documented signoffs before turning on and off access to a short dump.  This is pretty cumbersome, and still leaves a hole in my overall security.
    We've managed to purge restricted CC data from our XI logging, and done everything right with encryption, but this short dump issue just doesn't seem to have a solution.
    Can anyone help?  We're on 6.0.
    Thanks!

    Hi David,
    This is an interesting situation you have described. ABAP short-dumps or run-time errors as they are also known as, are unhandled exceptions during program execution. The conditions that cause such exceptions is unknown or cannot be handled at run-time. To help analyze what went wrong with the said program during execution, it is necessary for the dump to contain all possible information including data values passed between programs when the error occurs. Encryption of restricted data values is a program step in itself. If the dump were to occur after this step then of course it would contain encrypted CC info. Unfortunately in your case it exposes restricted CC info because the dump occurs BEFORE this step.
    I don't believe there is a way to prevent this from happening -- for the same reason that the program logic does not know at run-time how to "handle" the exception. If occurrences of such dumps is fairly common in your system, you may want to investigate the likely causes -- for example, missing or incorrect customization. Analyzing the short dumps will probably give you a clue. Your customization team may be able to identify a pre-condition that causes this unhandled exception. If this exception can then be handled (via a program change) that returns a meaningful error instead of a short dump you would be able to close the security hole. This however entails modification to SAP standard code. I don't usually recommend such changes, but given the sensitive nature of your data it may be worth consideration.
    I personally advocate restricted access to ST22. The steps you have undertaken to enforce this may be cumbersome despite efforts to keep it simple. I suppose that's the price we pay in administering the system. If you have not already done so, you may also want to ensure that short-dumps that contain restricted CC info are not saved (using the "Keep" feature in ST22) for easy retrieval at a later point in time or they are saved, it be available only to 'restricted eyes'. Short-dumps are normally saved in the system for 7 or 14 days (not sure of exact # of days). The bigger challenge in my opinion is: How do you prevent the restricted info from being viewed by the user who during the course of program/transaction execution encounters the said short dump? No amount of security controls around ST22 will mitigate this risk. The only option that remains is program change (as mentioned above). But to get there you first need to know what causes the exception.
    Regards.
    Ashutosh

  • REUSE_ALV_LIST_DISPLAY give short dump beyond 100 columns

    Hi,
    I have more than 170 columns in my internal table and this gives short dump when it reached 100the column because the structure RS_HEADER which displays column header can only hold 99 columns.
    Is there anyway I still use REUSE_ALV_LIST_DISPLAY  and overcome the short dump issue.
    Regards
    Kasi

    Although I have not encountered such a case, I would suggest the following: After 99 field, modify the field catalog by setting the excess fields as no_out = abap_true (provided TYPE-POOLS: abap is declared) Then, the user should be limited to a certain number of fields and if he/she wants more fields to be displayed, then he/she should change the layout. I hope that works.

  • Short Dump while execuition of DTP.

    Hi,
    I got short dump while  execuiting the DTP.
    Error messages shows as below:
    1.The database returned a value containing an error
    2.An exception with the type CX_SY_OPEN_SQL_DB occurred, but was neither handled locally, nor declared in a RAISING clause
    3.Exception CX_SY_NO_HANDLER logged
    Could you please help us in solving this issue.
    Regards,
    Suman.

    hi,
    an error like this comes usually in 2 cases
    1) not enough resources are available to carry out loads.in this case increase no of parallel processes to 2-3 in dtp setting,check the option get delta request by request(if its a delta load) and decrease packet size to 10000(from default 50000)
    2)fileld to field assignment is not proper:
    u need to check if there is any source field with lenth lets say 5 ans is getting assisgned to a target field length lets say 4.in this case dumps will come
    please check the error message in st22 and here you can also check the termination point.please check in option Chosen variables /contents of system fileds where you can get temp values at point of termination.here you can pinpoint values at which prog is throwing dumps.

  • Short Dump Error while executing the DTP

    Hello Experts,
    I am facing an issue with DTP.
    Data has been loaded to PSA successfully but while executing the DTP for loading from PSA to DSO (WO) throwing a short dump RAISE_EXCEPTION.
    Short text
        Exception condition "NO_DS_LG_FOUND" raised.
    "RAISE_EXCEPTION" " "
    "SAPLRSSTATMAN" or "LRSSTATMANU1
    "RSSTATMAN_GET_PARTTAB_PSA"
    or
    "SAPLRSSTATMAN" "NO_DS_LG_FOUND"
    or
    "RSAWBN_START " "NO_DS_LG_FOUND"
    We are on BI support pack 14 SAPKW70014, searched for OSS notes but there are few for SP 12/ 13.
    Did any body faced the simlliar issues,,,, please help
    Appreicate your quick response.

    You may wish to check this
    Note 1083305 - P16:STATMAN:Dump in function module RSM_INFOCUBE_WRITE_CHECK
    Hope it Helps
    Chetan
    @CP..

  • Short dump when trying to change DTP status to 'green'

    Hi,
    For a DTP delta run that brings in 0 records, the technical status turn green after 5-6seconds. But the overall status remains in yellow state.
    Also if we manually try to set it to 'red', I am able to do so and delete this request and run a new request, but again it ends with overall status yellow.
    If I try to set it to 'green' manually following short dump occurs:
    Category               ABAP Programming Error
    Runtime Errors         MESSAGE_TYPE_X
    ABAP Program           SAPLRSMDATASTATE
    Application Component  BW-WHM-DST
    I have already scanned all SAP notes relevant for this short dump, but none of them relates to this scenario.
    Please let me know if anyone faced this issue anytime, and how was it solved?
    Version : BW 7.02 SP14
    Regards,
    Rathy

    Hello Rathy,
    You can do following things,
    From message, it is apparent that there is Error in one of the ABAP Program . And as the Error is occurring within few seconds of the Start of DTP, can you check and debug the Start Routine .
    If Start Routine is not there, try to check whatever ABAP routine are there in facilitating the  processing.
    ( Routine in relevant Application Componenrt - BW-WHM-DST )
    Before this, can you also check the ABAP Dump through  ST22 and make sure that the underlying datasource ( for DTP ) is OK and smooth.
    Try to proceed in that way.. Hope this helps !
    Regards
    YN

  • SHORT DUMP WHILE EXECUTING DTP.

    Hi Gurus,
    I have got a short dump while executing DTP the Error is as Follows.
    Runtime Error: MESSAGE_TYPE_X.
    Reasons for Error: 1.The installation of the SAP GUI on the present server is faulty or obselete
    2.There is a error in the application program
    And i have sent the sreen shot of the Short Dump to BASIS TEAM and they have replied me that they have to install some patches and it will take some time.
    But i have no much time and i have to someway or the other execute the DTP and load the data.
    Is there any shortcuts for this i mean to say without the involvement of Basis team that i can do in th BI System
    Regards
    Amar.

    Hi Amar,
    If the problem is with with System itself, how can we all have a short cut in that case. You may give it another trial, but you have to wait for the patches to be applied. Ask your basis team to get it done ASAP.
    Thanks..
    Shambhu

  • Short dump-internal table size issue

    Hi,
    I get the following message in the short dump analysis for a report.
    No storage space available for extending table "IT_920".
    You attempted to extend an internal table, but the required space was not available.
    Error Analysis:
    The internal table "IT_920" could not be enlarged further.             
    To extend the internal table, 9696 bytes of storage space was          
    needed, but none was available. At this point, the table "IT_920" has  
    1008240 entries.
    Its an old report and I saw the internal table declaration using the "OCCURS" clause in the internal table declaration.
    begin of itab occurs 100.
    end of itab.
    I tried the option of changing to "OCCURS 0", still issue persists.
    Any help would be highly appretiated
    CM

    Hello CMV,
    This is basic problem with SAP internal tables. For every internal table memory is alocated ( Max..256K)...once you cross the memory size/limit of the internal table it resuls in short dump.
    Only way to overcome this problem is handle limited number of records at a time.. 
    Please refer following sample code which will help you to avoid short dump while processing large number of records....
      SORT TAB_RESULT.
      DESCRIBE TABLE TAB_RESULT LINES W_RECORDS.
      W_LOW      = 1.
      W_UP       = 1000.
    *Spliting the records from tab_result1 by pakage of 1000 at a time
    *to avoid short dump in case of more records
      WHILE W_LOW <= W_RECORDS.
        R_PKUNWE-SIGN = 'I'.
        R_PKUNWE-OPTION = 'EQ'.
        R_WERKS-SIGN = 'I'.
        R_WERKS-OPTION = 'EQ'.
        LOOP AT TAB_RESULT FROM W_LOW TO W_UP.
          MOVE TAB_RESULT-PKUNWE TO R_PKUNWE-LOW.
          MOVE TAB_RESULT-WERKS  TO  R_WERKS-LOW.
          APPEND R_PKUNWE.
          APPEND R_WERKS.
        ENDLOOP.
    *fetch sold to party
         SELECT KUNNR NAME1
           FROM KNA1
           APPENDING CORRESPONDING FIELDS OF TABLE TAB_KNA1
           WHERE KUNNR IN R_PKUNWE.
    *fetch plant
      SELECT WERKS NAME1
             FROM T001W
             APPENDING CORRESPONDING FIELDS OF TABLE TAB_T001W
             WHERE WERKS IN R_WERKS.
       REFRESH: R_PKUNWE,
                R_WERKS.
        W_LOW = W_LOW + 1000.
        W_UP  = W_UP  + 1000.
      ENDWHILE.
    Hope this will help you to solve problem.
    Cheers,
    Nilesh

  • Short dump due to performance issue

    Hi all,
    I am facing performance issue in my sandbox. Below is the content of short dump.
    Short text
        Unable to fulfil request for 805418 bytes of memory space.
    What happened?
        Each transaction requires some main memory space to process
        application data. If the operating system cannot provide any more
        space, the transaction is terminated.
    What can you do?
        Try to find out (e.g. by targetted data selection) whether the
        transaction will run with less main memory.
        If there is a temporary bottleneck, execute the transaction again.
        If the error persists, ask your system administrator to check the
        following profile parameters:
        o  ztta/roll_area            (1.000.000 - 15.000.000)
               Classic roll area per user and internal mode
               usual amount of roll area per user and internal mode
        o  ztta/roll_extension       (10.000.000 - 500.000.000)
               Amount of memory per user in extended memory (EM)
        o  abap/heap_area_total      (100.000.000 - 1.500.000.000)
               Amount of memory (malloc) for all users of an application
               server. If several background processes are running on
               one server, temporary bottlenecks may occur.
    Pls help me to resolve this issue
    Regards,
    Kalyani
    Edited by: kalyani usa on Jan 9, 2008 9:04 PM

    Hi Rob Burbank,
    I am pasting the transaction I found in the dump
    Transaction......... "SESSION_MANAGER "
    Transactions ID..... "4783E5B027A73C1EE10000000A200A17"
    Program............. "SAPMSYST"
    Screen.............. "SAPMSYST 0500"
    Screen line......... 16
    Also i am pasting the screenshot of ST02
    Nametab (NTAB)                                                                                0
      Table definition     99,22     6.799      3.591      62,97    20.000     12.591      62,96       0    8.761
      Field definition     99,06    31.563        345       1,15    20.000     13.305      66,53     244    7.420
      Short NTAB           99,22     3.625      2.590      86,33     5.000      3.586      71,72       0    1.414
      Initial records      52,50     6.625      3.408      56,80     5.000        249       4,98     817    5.568
                                                                                    0
    program                99,58   300.000      1.212       0,42    75.000     67.561      90,08   7.939   46.575
    CUA                    99,08     3.000        211       8,84     1.500      1.375      91,67  23.050      846
    Screen                 99,46     4.297      1.842      45,00     2.000      1.816      90,80      81      963
    Calendar              100,00       488        401      85,14       200        111      55,50       0       89
    OTR                   100,00     4.096      3.281     100,00     2.000      2.000     100,00       0
                                                                                    0
    Tables                                                                                0
      Generic Key          99,69    29.297      2.739       9,87     5.000        177       3,54      57   56.694
      Single record        89,24    10.000         63       0,64       500        468      93,60     241  227.134
                                                                                    0
    Export/import          76,46    50.000     40.980      83,32     2.000                         2.676
    Exp./ Imp. SHM         97,82     4.096      3.094      94,27     2.000      1.999      99,95       0
    SAP Memory      Curr.Use % CurUse[KB] MaxUse[KB] In Mem[KB] OnDisk[KB] SAPCurCach HitRatio %
    Roll area            0,16        432     18.672    131.072    131.072   IDs           98,11
    Page area            0,19        496    187.616     65.536    196.608   Statement     95,00
    Extended memory      9,89    151.552  1.531.904  1.531.904          0                  0,00
    Heap memory                        0          0  1.953.045          0  
      0,00
    Regards,
    Kalyani

  • Short Dump "ITAB_DUPLICATE_KEY" while executing DTP

    Hi all,
    i am getting a short dump when i try to execute the DTP to Cube, following is the error details.
    i could not analyze the reason, need your inputs on this.
    Runtime Errors         ITAB_DUPLICATE_KEY                                           
    Date and Time          02/08/2009 21:33:53                                          
    Short dump has not been completely stored (too big)                                                                               
    Short text                                                                               
    A row with the same key already exists.                                                                               
    What happened?                                                                     
         Error in the ABAP Application Program                                                                               
    The current ABAP program "SAPLRSAODS" had to be terminated because it has      
         come across a statement that unfortunately cannot be executed.                                                                               
    Error analysis                                                                     
         An entry was to be entered into the table                                      
          "\FUNCTION=RSAR_ODS_GET\DATA=L_TH_ISOSMAP" (which should have                 
         had a unique table key (UNIQUE KEY)).                                          
         However, there already existed a line with an identical key.                                                                               
    The insert-operation could have ocurred as a result of an INSERT- or           
         MOVE command, or in conjunction with a SELECT ... INTO.                                                                               
    The statement "INSERT INITIAL LINE ..." cannot be used to insert several       
          initial lines into a table with a unique key.                                                                               
    thanks,
    Rk

    Hello Rk,
    What is the data source??
    whats is your SP level??
    Seems like the data source is not properly activated or duplicate entries exists in the system tables for the same data source...
    If you have recently done a system copy??
    Try to activate the data source again...if its from R/3 then replicate and activate it again...also if its a BW object then try to reactivate it as well.
    Thanks
    Ajeet

  • Short dump while executing the DTP

    Dear Experts,
    While executing the DTP the system is generated short dump and it is Quality server not in Development system.
    The error details are in method Calculate_keyfigure_ds and the data is loaded for IS retails from POSDM.
    The error details:
    "The MOVE-CORRESPONDING statement can only be used on operands with a
    structured type.
    In the case at hand, this condition is not fulfilled: Operand "<L_STRUC>" has
    the type "C"."
    Regards,
    Amit

    Hi Amit ,
    Move corresponding statements can be used for structures only and from the error message it seems that there is datatype mismatch.
    Check for the errors ion link :
    http://help.sap.com/abapdocu/en/ABAPMOVE-CORRESPONDING.htm
    Hope it helps ,
    Regards,
    Supriya

Maybe you are looking for

  • SSL Error in Apache

    I am getting what appear to be SSL errors in the apache logs when I try and use an SSL certificate on a website listening on a non-standard port. I have a site, lets call it test.example.com, that is setup on port 8843. When I use no SSL cert, I have

  • Layout Question - How to print a frame on the bottom of the last page ?

    I have a summary frame for my report. I want to print the summary information at the bottom of the last page of the report. Currently depending on the data, the summary frame prints anywhere on the last page. How do I make sure it prints exactly at t

  • LG 29EA93 29 inch Widescreen LED Monitor Lightroom Issue

    When I use Lightroom with the LG 29EA93 29 inch Widescreen LED Monitor Lightroom 5 initially looks and works OK but when I try and make changes using develop I get a gray area where the image should be (see below). I have tried other resolutions and

  • Crazy Headphone problem? Speaker no longer works in some cases

    Gang, Basically my phone work just fine. But when I get a call I have to put it on speaker phone to listen to anything. Also when I adjust the volume it always indicates Headphone. and Yes I do not have my headphones in. I looked at the cleaning thin

  • Cisco Call Manager replication issue

    Hello We are running a cluster of 3 servers with Cisco Call Manager version 6 I have noticed that the replication status is 3 on all servers and from the CM Database Status I can see  queue of updates are stuck I have restarted Pub and one Sub but th