Short Dump for Query in Quality server

Hi Experts,
i have a query, when i execute it in developement server, it successfully execute. But when i execute the same query in Quality,
it gets short dump, giving following error.
ABEND RSBOLAP (000): Program error in class SAPMSSY1 method : UNCAUGHT_EXCEPTION
  MSGV1: SAPMSSY1
  MSGV3: UNCAUGHT_EXCEPTION
previously it was working fine in quality, but suddenly it gets shortdu while executing.
i transported again, but error still persists.
i tried execute this query in RSRT also, where it stops at a break point.
this query uses a custimer exit variable, but this variable is not the reason for short dump. without this variable also same error occurs.
please help me to resolve this.
Thanks
Saurabh

Hi,
Please try to provide max input in the variable screen, Don't execute the query based on single selection criteria. And also please perform cube compression before executing the query.
Hope this will solve the issue .
Thanks
PT

Similar Messages

  • Short Dump for Dynamic Select Query

    Hello all,
    I get a short dump for my dynamic select query at the end of the code. The error is "The types of operands "dbtab" and "itab" cannot be converted into one another."
    My code looks like below.
    FORM get_ccnum_2  USING    p_tabname TYPE dd03l-tabname.
    DATA: p_table(30)  TYPE c.
      FIELD-SYMBOLS:  <dyn_wa>,
                                   <t> TYPE table.
      DATA: it_fldcat    TYPE lvc_t_fcat.
      TYPE-POOLS : abap.
      DATA: it_details   TYPE abap_compdescr_tab,
            wa_details   TYPE abap_compdescr.
      DATA: ref_descr    TYPE REF TO cl_abap_structdescr.
      DATA: new_table    TYPE REF TO data,
            new_line     TYPE REF TO data,
            wa_it_fldcat TYPE lvc_s_fcat.
    p_table = p_tabname.
      ref_descr ?= cl_abap_typedescr=>describe_by_name( p_table ).
      it_details[] = ref_descr->components[].
      LOOP AT it_details INTO wa_details.
        CLEAR wa_it_fldcat.
        wa_it_fldcat-fieldname = wa_details-name .
        wa_it_fldcat-datatype  = wa_details-type_kind.
        wa_it_fldcat-intlen    = wa_details-length.
        wa_it_fldcat-decimals  = wa_details-decimals.
        APPEND wa_it_fldcat TO it_fldcat .
      ENDLOOP.
      CALL METHOD cl_alv_table_create=>create_dynamic_table
        EXPORTING
          it_fieldcatalog = it_fldcat
        IMPORTING
          ep_table        = new_table.
    ASSIGN new_table->* TO <t>.
    CREATE DATA new_line LIKE LINE OF <t>.
      ASSIGN new_line->* TO <dyn_wa>.
    wa_cond = 'CCNUM <> '' '' '.
    APPEND wa_cond TO tab_cond.
          SELECT * INTO TABLE <t>
                   FROM     (p_table)
                   WHERE    (tab_cond)
                   ORDER BY (tab_ord).
    ENDFORM.                    " GET_CCNUM_2

    Hi,
    I tried to execute the code using table BSEGC and it gave a short dump..
    the actual exception that shows in ST22 IS ..UNICODE_TYPES_NOT_CONVERTIBLE..
    I think there is something wrong in the internal table creation..
    Instead of using the method cl_alv_table_create=>create_dynamic_table to create the dynamic table I used the following and it worked..
    CREATE DATA new_table TYPE TABLE OF (p_table).
    * Comment begin  " Naren
    *  ref_descr ?= cl_abap_typedescr=>describe_by_name( p_table ).
    *  it_details[] = ref_descr->components[].
    *  LOOP AT it_details INTO wa_details.
    *    CLEAR wa_it_fldcat.
    *    wa_it_fldcat-fieldname = wa_details-name .
    *    wa_it_fldcat-datatype  = wa_details-type_kind.
    *    wa_it_fldcat-intlen    = wa_details-length.
    *    wa_it_fldcat-decimals  = wa_details-decimals.
    *    APPEND wa_it_fldcat TO it_fldcat .
    *  ENDLOOP.
    *  CALL METHOD cl_alv_table_create=>create_dynamic_table
    *    EXPORTING
    *      it_fieldcatalog = it_fldcat
    *    IMPORTING
    *      ep_table        = new_table.
    * Comment End.  " Naren
    CREATE DATA new_table TYPE TABLE OF (p_table).   " New code by naren
    Please Try this..
    Thanks
    Naren

  • How to deal with Short dump that restarts the index server?

    Hi ,
    I have been experiencing this problem whenever any exception occurs in my SQL SCRIPT procedure. For instance when there is a situation when I try to insert a value of 50 characters in length to a column with max size of 40 it throws a short dump and restarts the index server. I tried to insert the exception handling code as well but still the problem persists. Is there a way to solve this issue?

    Hi Sudarshan
    crashes are rather generic reactions of the system to virtually any kind of problem that may occur.
    Memory shortage is one of the more common issues in current SAP HANA setups and SAP HANA development is heavily working on handling memory shortage situations more gracefully.
    Massive over allocation of memory, for example by very large intermediate result sets or join result sets typically can be addressed by correcting the query or model that leads to the issue.
    Anyhow, the initial post was not about a memory shortage but about a crash that seemed to have occurred with wrong data type handling.
    These are two very different kinds of problems, so I am not really sure how your comment relates here.
    - Lars

  • How to keep short dumps for a longer time

    Hi All,
    I need to write a program to fetch all the below mentioned fields from the system dump tables and insert into a user defind table. Please help me with the code. Thanks in advance....
    PROBLEM DESCRIPTION
    ABAP runtime errors (also known as short-dumps) are kept in the system only for two days, mainly because every short-dump can use a lot of disk space depending on short-dump type. Problem is that this reduced time frame (two days) is not allowing us to focus in solve the more frequent ones and we do not have any statistic about:
        how many are we getting
        how often
        repetitive ones
    PROPOSED SOLUTION
    We need a program to be executed in a daily job right after midnight which will take the basic information of all today’s short-dumps and store it in a custom table.
    Information to be kept:
          DATE
          TIME
          HOST
          USER
          SYSTEM
          CLIENT
          ERROR ID
          TRANSACTION
          PROGRAM NAME
          PROGRAM NAME VERSION (TRANSPORT REQUEST NUMBER)
          PROGRAM NAME VERSION TIMESTAMP (transported to PPx)
          SCREEN
          SCREEN LINE
          MAIN PROGRAM NAME
          MAIN PROGRAM NAME VERSION (TRANSPORT REQUEST NUMBER)
          MAIN PROGRAM NAME VERSION TIMESTAMP (transported to PPx)
          PROGRAM LINE NUMBER AT TERMINATION
          SAP RELEASE
          SAP KERNEL
          PATCH LEVEL
          DATABASE VERSION
    The program must have archiving capabilities implemented. In the month end run it will also perform the table house-keeping accordingly with a parameter like this:
         ERROR-ID
         MONTHS TO KEEP
    We need to have the possibility of defining different retention periods for different kind of errors, for example our friend GETWA_TOO_MANY_SEGMENT could be stored for a year and a simple CONVT_NO_NUMBER only for a month. One of the parameters should be the default one, something like 
            ERROR-ID **************
            MONTHS TO KEEP 01.

    Aruna,
    Following may be the action points for your requirements.
    1. Create Custom table with all fields you required.
    2. Create ABAP program to extract the data from SAP standard table where runtime error information is stored.
    Like: select * from snap_beg into wa_snap_beg
              where seqno = '000'
              and   datum in s_datum
              and   uzeit in s_uzeit
              and   ahost in s_ahost
              and   uname in s_uname
              and   mandt in s_mandt.......
    So SNAP_BEG is a table where you can find dump information.
    After extracting the data from this table insert it into a Custom table which you have created in Step 1.
    Use INSERT statement for this.
    3. Create transaction for this report.
    4. Schedule this program every day so that you will get all data into custom table.
    I hope this will help you.
    Regards,
    Amey

  • TIME_OUT Short Dump for SAPLDSVAS_PROC report - BPM activation

    Hello SOLMAN Experts,
    I'm trying to activate BPM Business Process Monitoring and getting the following short dump:
    Runtime Errors         TIME_OUT
    Short text
         Time limit exceeded.
    What happened?
         The program "SAPLDSVAS_PROC" has exceeded the maximum permitted runtime without
        interruption and has therefore been terminated.
    Any advice please?
    Thanks,
    123

    Hello,
    For the time being (Temporarily), you can try to increase the parameter rdisp/max_wprun_time to some higher value and then try activation process. This parameter is I think 'dynamic' and so can be updated without system restart. You can verify this from rz11.
    After you done, revert the value.
    Thanks

  • SAP GUI for HTML - Short dump for Office intehration

    Hi Experts.
      I am using portal to view the transaction and it needs to open a document, while opening a document through it getting an error. when using
      SAPGUI for HTML. 
      But it is working fine for GUI for Windows. ( selected this option in iView). It also works fine when use the transaction SAP itself.
    Getting an below error from portal.
    A RAISE statement in program "C_OI_CONTAINER_CONTROL_CREATORCP" has rais
    exception condition "JAVABEANNOTSUPPORTED".
    Since the exception was not caught by a program higher up in the call
    hierarchy, processing was terminated.
    Thanks
    Rag

    Anurag,
      I have gone through notes.
    I am using 7.2 version and access transaction through portal. while opening MS-office document, it is giving an error like JAVABEANNOTSUPPORT. and OFFICEINTREGRATION issue.
    While opening it in SAP its working fine as well as using GUY for Windows also good.
    But giving a short dump while accessing through portal with GUI for HTML option.
    Any idea or work around for the same.
    Thanks
    Rag

  • Getting Short Dumps for only 1 user - related to BAL logs

    Just yesterday afternoon, 1 user began receiving short dumps in the FM BAL_INTERNAL_LOCK_ON_SAVE
    This is happening on each message she's trying to process. I can process the exact same message and it works for me.
    Termination occurred in the ABAP program "SAPLSBAL_DB_INTERNAL" - in  "BAL_INTERNAL_LOCK_ON_SAVE".
    The main program was "ZCSS_SCH_CREATE_DOCS ".
    In the source code you have the termination point in line 65 of the (Include) program "LSBAL_DB_INTERNALU07".
    In my main program, ZCSS_SCH_CREATE_DOCS, I just load up the AIF messaging structure and Call TRANSFER_TO_AIF method.
    Any idea what's going on?

    turns out it was a security issue.

  • Short Dump for upgrade from 3.5 to 7.0

    Hi All,
    We have upgraded the BI system from 3.5 to 7.0 .
    In the upgraded system , when i run the program RRINCLTAB_REBUILD , it throws the short dump as SAPSQL_WHERE_FOR_ALL_MISMATCH.
    In the dump it says to check the field length and field type of LINKNO for the standard table and the internal table used in program.
    Standard table - /BIC/KILIACG
    Internal table - l_t_nodesid type standard table of RSDMHSITAB
    I checked it , but unable to find any in-consistency there in two field definations.
    Pls suggest the ways to resolve it.
    Regards,
    Sarang Kahu

    Hi,
    the error is not related to a standard table.
    /BIC/KILIACG is the sid table of the hierarchy of infoobject ILIACG. I would recommend to check that infoobject in the target system and try to activate if it isn't active already. Otherwise, goto se14. for the that table and check the ddic object as well as the runtime object. Try to repair the table with se14. Then run the program again.
    regards
    Siggi

  • Short dump for rsa3

    Hi sapxperts,
      I am getting error ,short dump when i execute the RSA3 for inventory management data Source 2LIS_03_BX.
    Please somebody help with regards to Inventory management stuff .
    thank you.

    hi stalin,
    Heres how to proceed.
    execute tcode RSA3.Give your datasource name.In the below screen there is a Grid.
    There you can see a list of characteristics available.You can put some values there for a characteristics.
    For ex- If you see company code there. Try putting some values there.
    This will filter out the selection and lesser values will be extracted.
    hope it helps,
    regards,
    Parth.

  • HU03 going to short dump for handling unit which has higher level handling

    Hi,
    I am ABAPer, i working on issue, HU03 is gong to short dump. i dubug the t code and find out that particular handling unit has higher level handling unit. I checked another handling unit which won't had higher level handling unit, that time it's not giving dump.
    Note: in HU03 T CODE, function module V51P_HU_CONTENS is fetching values. when ever handling unit has higher level handling unit, it's not fetching further values.
    venkey

    Hi,
    Goto NACE transaction code , there you select the application area then  it will give you the list  of output types then select specific output click processing routines then you will see the program name and  script used.
    Or esle goto SPRO tcode then you can find the functional tab there also you can get the details.
    Thanks,
    Aditya

  • Getting error while import the query in quality server

    Hi all,
    I am transporting the user group, infoset and  query from development system to quality system and i am able to export it successfully but at the time of import from quality system i am getting the error .
    please find the attached description of error-
    Query z_it0023 of user group HR_CPC (Import option replace)
    compare query z_it0023/ HR_CPC <-> Infoset ZHR_REPORT : Field p0002-ZMIDNM is missing
    Import fro query Z_IT0023 / HR_CPC cancelled RC = 08.
    I am not getting why this error is occur as field P0002-ZMIDNM is alreday present in the infotype and in infoset both.
    Please some one help me out , it would be great help for me.
    thanks,
    Khush

    Hi Khush,
    You need to check whether the field 'p0002-ZMIDNM' is part of an append structure or include structure. If yes then ensure that the main request for the append/include structure for table P0002 is transported first. If the same has been saved as a local request, then, convert the developments to a request and assign a package to it. Transport the changes to table P0002 and then this request.
    Regards,
    Pranav.

  • Short dump for update function module

    Hi Folks,
       If I try to raise exception in Update Task function module which is in turn called in Custom BAPI function module. When I test the BAPI stand-alone using explicit COMMIT WORK (For testing)I can see the error in SM13 and it processes further in BAPI. Now when I am using this BAPI for ALE Inbound processing function module to SAP, when I test using testing tool WE19 it crashes when it passes the update FM inside BAPI, and encounteres BAPI_TRANSACTION_COMMIT, the update Function module is executed as encountered and gives me dump at the raised exception and does not show error in SM13. Please suggest how I could overcome this dump.
    Regards,
    Tim

    Hi there,
    Yes. I know that I can details from ST22 Analysis. And I did go through that.
    Here's the Section that explains:
    How to correct the error
        Try to find out why the number of decimal places of the field should be
        2.
        There are various possible options:
        1. The number of decimal places of the imported field has changed in the
           Data Dictionary. Make sure that the number of decimal places of the
           imported field matches the number of decimal places of the field in
           the Data Dictionary.
           If the data cannot be restored from another source, the data of the
           'old' structure must be read by the 'old' structure, converted und
           again eported with the new structure, so that future IMPORTs will
           always function with the new structure.
        2. A new program version is active, which no longer fits the dataset.
           Try to solve the error generating the program
         "ZFI_FM_GET_STD_COSTS==========FT" again. This
           works as follows: Select transaction SE38 in the SAP system. Enter
           the program name "Z_GET_COSTS==========FT". Then activate the
         function 'Generate'.
    1. I made sure that the decimal places matches.
    2. I did re-generate the program.
    But still got the same dump. Interestingly, the program where I am using this FM is working absolutely fine.
    Thanks.

  • 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

  • Getting Dump for depreciation run

    Hello
    While taking the depreciation run thr tcode AFAB one background job is created for posting the depreciation value.
    But this background job is terminated giving short dump for INSERT BSEG statement.
    runtime error DBIF_RSQL_INVALID_REQUEST is raised.
    But the same transaction works fine on quality server with same parameters.
    What might be the reason?? How to trace the reason??

    i think insertions in table bseg is not allowed on server u r working on..
    plz reward points if this helps

  • Tranformation activation throws short dump

    Hi all,
    I am on SP9 earlier when assinging formulas in transformations i used to get "ASSERTION_FAILED" error. I searched for oss note and installed the following notes (along with there prequisites) in the below order
    971020
    1008381
    1011638.
    <b>Now on activation i get a syntax error.</b>
    Runtime Errors         SYNTAX_ERROR
    Date and Time          01/09/2007 13:47:19
    <b>Short text</b>
      Syntax error in program "CL_RSTRAN_GEN=================CP ".
    <b> What happened?</b>
      Error in the ABAP Application Program
    The current ABAP program "CL_RSTRAN_TRFN================CP" had to be terminated because it has come across a statement that unfortunately cannot be executed.
    The following syntax error occurred in program
       "CL_RSTRAN_GEN=================CP " in include
       "CL_RSTRAN_GEN=================CM00T " in
         line 54:
       "Field "I_NO_FREE" is unknown. It is neither in one of the specified ta"
       "bles nor defined by a "DATA" statement. "DATA" statement. "DATA" state"
         "ment."
      The include has been created and last changed by:
         Created by: "BSHKSC "
         Last changed by: "SAP "

    Hi Everyone,
    We are on support package 9.  I had the same assertion failed issues during imports.  There were three key notes I wanted to implement, 1008381, 1011638, and 980549.  These triggered the need for the rest to be implemented as well.  Despite all those notes, we still have the short dump for the the syntax error with "I_NO_FREE" for CL_RSTRAN_GEN.  I think there may be one or two other side effects as well since we are seeing other short dumps as well. 
    Thanks everyone.  Craig
    =========NOTES IMPLEMENTED===========
    0000965972 Time-dependent master data - no data is read
    0000976162 Currency trans/unit conversion: Target currency/unit initial
    0000977225 Query on remote char terminates with ASSIGN_TYPE_CONFLICT
    0000977926 Error BRAIN 070 occurs when filling a unit DataStore
    0000979607 Runtime attribute: For example, source system is unavailable
    0000980549 Endless D0/WHILE with inconsistent metadata
    0000981806 RSUOM 065: No quantity conversion possible
    0000983478 Request terminates with CX_SY_CONVERSION_ERROR
    0000991119 RSM2 720 - Record (0) or segment (0001) unknown
    0000995479 Breakpoints in der Simulation der Transformation
    0001007327 RSTRAN 302 Exception .. aufgetreten DatenSatz geskipped
    0001007765 Syntaxfehler bei Aktivierung einer Transformation
    0001008381 Syntax error although the formula or routine is correct
    and...
    0001011638, 0000930495, 0000965507, 0000968517, 0000973258, 0000984890,
    0000986199

Maybe you are looking for

  • How can i call a taskflow methode from backing bean ??

    Build JDEVADF_11.1.1.3.PS2_GENERIC_100408.2356.5660 i like to call a Methode (taskflow) from backing bean! my bean code :     public void imageLinkActionListner(ActionEvent actionEvent) {         String              id      = actionEvent.getComponent

  • What do I need to do in order to unlink the pages of one document in ipages?

    Every time I make a Change in one page of the document, it affects previews pages and mix the information.. there for I want to unlink the pages in the document. so I can be able to change information in one page, with out movieng the rest of the doc

  • Studio Display: power but no video??

    I have a Studio Display monitor connected to Quicksilver G4 via the ADC cable. The monitor is getting power but there's no video. I don't have access to another ADC-equipped computer for testing. Any ideas as to where the problem might lie?

  • Feedback Thread: Firmware MU02 for BX100

    Please use this thread to provide any feedback for firmware MU02 for BX100. Firmware revision MU02 for the Crucial BX100 (all form factors) is now available. This firmware update applies to the BX100 SSD (all form factors), and should not be applied

  • Safari 5 crashes at startup

    After I installed Safari 5 update, it doesn't work. This is the crash log: Process: Safari [6478] Path: /Applications/Safari.app/Contents/MacOS/Safari Identifier: com.apple.Safari Version: 5.0 (5533.16) Build Info: WebBrowser-75331600~3 Code Type: X8