SAPSQL_ARRAY_INSERT_DUPREC error in ST22

Dear all,
We have CI and 2 Dialog instanence in Prod Environment . 
Oracle 10g , AIX and Ecc6.0 .
past 2 days i am getting the below error on Application 1 error .
Runtime Errors         SAPSQL_ARRAY_INSERT_DUPREC
Exception              CX_SY_OPEN_SQL_DB
Date and Time          05.05.2010 00:30:57
Short text
     The ABAP/4 Open SQL array insert results in duplicate database records.
What happened?
     Error in the ABAP Application Program
     The current ABAP program "SAPLSLIM_CNT" had to be terminated because it has
     come across a statement that unfortunately cannot be executed.
What can you do?
     Note down which actions and inputs caused the error.
     To process the problem further, contact you SAP system
     administrator.
     Using Transaction ST22 for ABAP Dump Analysis, you can look
     at and manage termination messages, and you can also
     keep them for a long time.
Kindly suggest me
Regards

Hi,
The dump doesn`t point to any job and the client where it's generated is 000:
User and Transaction
    Client.............. 000
    User................ "SAPSYS"
    Language key........ "S"
    Transaction......... " "
    Transactions ID..... "4BF64BEB79450E9BE1000000C0A84866"
    Program............. "SAPLSLIM_CNT"
    Screen.............. "SAPMSSY0 1000"
    Screen line......... 6
Information on where terminated
    Termination occurred in the ABAP program "SAPLSLIM_CNT" - in
     "SLIM_CNT_CONSOLIDATE_COUNTERS".
    The main program was "RSUVM018 ".
    In the source code you have the termination point in line 106
    of the (Include) program "LSLIM_CNTU02".
    The program "SAPLSLIM_CNT" was started as a background job.
    Job Name....... " "
    Job Initiator.. " "
    Job Number..... " "
    The termination is caused because exception "CX_SY_OPEN_SQL_DB" occurred in
    procedure "SLIM_CNT_CONSOLIDATE_COUNTERS" "(FUNCTION)", but it was neither
     handled locally nor declared
    in the RAISING clause of its signature.
    The procedure is in program "SAPLSLIM_CNT "; its source code begins in line
    1 of the (Include program "LSLIM_CNTU02 ".
I've observed the dump in alternate days, not all days and without any periodicity.
I've been looking for SAP notes in sapnet and in forums, but I didn't find anything similar.
Thank you very much!!!
BR,
Martina

Similar Messages

  • How to delete the runtime error in st22

    Hi all,
            How to delete the runtime error in ST22. I want to clear
    the list of short dump in st22
    is there any T.code or any table to clear?
    thanks in advance
    sundar.c

    Hi
    you cannot delete the dumps through any tcode.
    All the dumps are stored in table called SNAP, If there are more dumps the table gets filled therefore u have to reorganize the table.
    Run the report RSSNAPDL in SE38.
    or
    You have the default SAP background jobs, SAP_REORG_ABAPDUMPS which deletes the past dumps raised in the system.
    Scheduling the jobs in regular is very important
    For more information
    http://help.sap.com/saphelp_nw04/helpdata/en/c4/3a7ede505211d189550000e829fbbd/frameset.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/d8/a58b4275160d53e10000000a155106/frameset.htm
    Regards
    Bhaskar

  • Getting "SAPSQL_ARRAY_INSERT_DUPREC" error while creating a new layout

    Hi,
    I deleted a layout from a level.  When I tried to create a new layout with the same technical name, I was getting a run time error.
    Name of the error : SAPSQL_ARRAY_INSERT_DUPREC
    Exception           : CX_SY_OPEN_SQL_DB
    I went to ST22 and analyzed the dump.  I found that the entries for the layout that I deleted were still present in the following 2 tables:
    1) UPP_PARAMT
    2) UPP_ELEMT
    My questions are:
    1) Is there any possibilities that I can retrive the layout that I deleted with the help of the entries present in the above tables?
    2) Can I remove the entries from these two tables so that I can create a new layout with the same technical name?
    Thanks,
    Seetharaman V

    Hi Matt
    Thanks for your comments.  I was getting this error while trying to save the new layout i created and not during the creatiion.
    Thanks,
    Seetha

  • IC intermittent SAPSQL_ARRAY_INSERT_DUPREC error after changing business partner

    Hello,
    after upgrading from CRM5 to CRM7 (Service for Employee), our Interaction Centre users started getting intermittent SAPSQL_ARRAY_INSERT_DUPREC screen dumps when clicking on the 'Save' button after having changed a partner number in the Partners Table of a Service Ticket.
    On encountering one of these screen dumps, the user then has to close their IC session and then restart it - after which it is then possible to successfully 'Save' the same change to the same business partner on the same Service Ticket.
    I have not been able to reproduce this error due to its intermittent nature.
    Details of the source code extract from the ST22 dump is given below.
    Has anyone else encountered such an issue themselves?
    thanks,
    Martin
    Category ABAP Programming Error
    Runtime Errors SAPSQL_ARRAY_INSERT_DUPREC
    Except. CX_SY_OPEN_SQL_DB
    ABAP Program SAPLCOM_PARTNER_DU
    Application Component CRM-BF-PD
    Date and Time 20.08.2014 11:15:25
    Line SourceCde
      41 * data definitions
      42 DATA: BEGIN OF ls_attribute_record_to_use,
      43 partner_guid TYPE crmt_partner_guid,
      44 values TYPE text255. "has to be as long as the longest
      45 "attribute structure
      46 DATA: END OF ls_attribute_record_to_use.
      47
      48 DATA: lt_attribute_records_to_use LIKE SORTED TABLE OF
      49 ls_attribute_record_to_use WITH UNIQUE KEY partner_guid,
      50
      51 lv_tablename TYPE tabname,
      52 ls_attribute_record TYPE crmt_partner_attr_du,
      53 lv_name TYPE char64.
      54
      55 FIELD-SYMBOLS: <values> TYPE ANY,
      56 <address> TYPE crmt_partner_address,
      57 <fs_insert_record> TYPE crmd_partner,
      58 <fs_addr_ref_data> TYPE crmt_partner_address_reference.
      59
      60 FIELD-SYMBOLS: <wa_to_proceed> TYPE ANY,
      61 <table_to_proceed> TYPE ANY TABLE.
      62
      63 DATA: wa_to_proceed TYPE REF TO data.
      64 DATA: lt_wa_table TYPE REF TO data.
      65
      66 *** MAINTAIN PARTNER RECORDS *******************************************
      67
      68 *** records to insert
      69 IF NOT it_partner_records_to_insert IS INITIAL.
      70
    >>>>> INSERT crmd_partner FROM TABLE it_partner_records_to_insert.
      72 IF sy-subrc NE 0.
      73 MESSAGE a002(com_partner) WITH gc_object_name_partner.
      74 ENDIF.
      75
      76 ENDIF.
      77
      78 *** records to delete
      79 IF NOT it_partner_records_to_delete IS INITIAL.
      80 DELETE crmd_partner FROM TABLE it_partner_records_to_delete.
      81 IF sy-subrc NE 0.
      82 MESSAGE a002(com_partner) WITH gc_object_name_partner.
      83 ENDIF.

    Hello Atul,
    thanks for your message. I have had a look at the SAP notes that you have pointed me to, however they unfortunately do not relate to the functionality where we are encountering this problem:
    1914117 - Relates to Sales (not Service {Employee})
    1823316 - This error occurs in the wrong FM (BUR_BUPR_UPDATE) rather than FM COM_PARTNER_UPDATE_DU.
    1809361 - Relevant for the SAP GUI transaction, 'BP', not the Interaction Centre which iswhere this error is occuring.
    SAP have not been able to help because of its intermittent nature, it is not possible to create this error on demand, and as I am working on a secure site SAP cannot open a remote connection.
    thanks,
    Martin

  • SAPSQL_ARRAY_INSERT_DUPREC error in PM_PARTNER_MAINTAIN

    Hi every one.
    My problem is as follow:
    I create a Quality notification using function GENERATE_NOTIFICATION,and just before I assing a partner using function PM_PARTNER_MAINTAIN.
    The problem come when, after that, I try to change the user status of the quality notification using function IQS4_CHANGE_USR_STAT_NOTIF. This do not make the update since a dumb "SAPSQL_ARRAY_INSERT_DUPREC " occurs (This dump occurs in a new call to PM_PARTNER_MAINTAIN into change status function)
    This error no occur if I do not call  function IQS4_CHANGE_USR_STAT_NOTIF in the program and then i call it manually from SE37.
    Thanks in advance for your help.
    Regards.

    Hi all,
    I finally use the function I_CHANGE_STATUS to change the status. This function do not call the function PM_PARTNER_MAINTAIN so the Dump do not occur now.
    Thank all.
    PD: The link was not useful, It was look for a needle in a barn.

  • SAPSQL_ARRAY_INSERT_DUPREC-Error while processing COM_PCAT_IMS_FEED_INIT

    Hi
    Yesterday I started multiple initial replications (CRM 2007) of the same catalog but with different variants at the same time. Two of the jobs were canceled from the system with the message: ABAP/4 processor: SAPSQL_ARRAY_INSERT_DUPREC
    Normally I didn't got any error when I was replication a catalog this way.
    Does anybody know why this happened?
    Regards,
    Rico

    HI,
    We have the same problem , can you please give me an update relating the way you solve it ?
    Thanks in advance
    Regards

  • 'SAPSQL_ARRAY_INSERT_DUPREC' error while cancellation of credit memo.

    Hi,
    I'am cancelling a credit memo created through 'Sales Return'.When I save the document it gives the message that billing document is created, but just after sometime it shows 'Error info...   00 671: ABAP/4 processor: SAPSQL_ARRAY_INSERT_DUPREC. I've checked SAP notes:208627,154638 and 6080 regarding the mentioned error.
    System behaves normally when I cancel an ordinary billing document(cancellation type S1) but when I cancel credit memo (Billing Cancellation type S2) it shows error.Part of the short dump is:
    The termination occurred in the ABAP program "SAPLV60U" in "KONV_BEARBEITEN".
    The main program was "RSM13000 ".
    The termination occurred in line 28 of the source code of the (Include)
    program "LV60UF0K"
    of the source code of program "LV60UF0K" (when calling the editor 280).
    The program "SAPLV60U" was started in the update system.
    Processing was terminated because the exception "CX_SY_OPEN_SQL_DB" occurred in
    the
    procedure "KONV_BEARBEITEN" "(FORM)" but was not handled locally, not declared
    in the
    RAISING clause of the procedure.
    The procedure is in the program "SAPLV60U ". Its source code starts in line 11
    of the (Include) program "LV60UF0K ".
    Source code extract
    000010   ***********************************************************************
    000020   *  Unterroutinen RV-Fakturierung                                      *
    000030   *                                                                     *
    000040   *                KONV_BEARBEITEN                                      *
    000050   ***********************************************************************
    000060
    000070
    000080   *                                                                     *
    000090   *       FORM KONV_BEARBEITEN                                          *
    000100   *                                                                     *
    000110   FORM KONV_BEARBEITEN.
    000120
    000130     CHECK: OHNE_KONV = SPACE.
    000140     XVBRK_TABIX = 0.
    000150     LOOP AT XVBRK WHERE UPDKZ NE UPDKZ_NEW.
    000160       DELETE FROM KONV WHERE KNUMV = XVBRK-KNUMV.
    000170     ENDLOOP.
    000180
    000190     LOOP AT XKOMV.
    000200       KONV       = XKOMV.
    000210       BELEG = XKOMV-KNUMV.
    000220       IF BELEG-ID = '$'.
    000230         PERFORM VBRK_BELEGNUMMER_ERMITTELN.
    000240         XKOMV-KNUMV = XVBRK-KNUMV.
    000250       ENDIF.
    000260       MODIFY XKOMV.
    000270     ENDLOOP.
         >     INSERT KONV FROM TABLE XKOMV.
    000290     IF SY-SUBRC NE 0.
    000300       MESSAGE A100 WITH 'KONV' SY-SUBRC XKOMV-knumv.
    000310     ENDIF.
    000320
    000330   ENDFORM.
    000340   *eject
    Please help.
    Thanks with Regards.
    Manoj

    HI,
    We have the same problem , can you please give me an update relating the way you solve it ?
    Thanks in advance
    Regards

  • Memory errors in ST22 when trying to run report

    Hi all,
    Connection details: BW query using the MDX driver method.
    My report starts getting timeouts when I reach a certain number of attributes. Only one field is a navigation attribute but I get the error even if I totaly exclude that field from my report.
    I have enabled the 'Use selection of structure elements' tick in RSRT | Query Properties. 
    Using MDXTEST I get a dump telling me that I was trying to return 27 million records but I know my cube has only 1745 records in it.
    When I use the old driver (SAP BW Query) and build a report with ALL my attributes I don't get an error at all but it's not recommended to use this driver anymore.
    PS We have applied the corrections given in OSS Note 1554272.
    More details fromthe ST22 dump:
    Short text                                                                               
    No more storage space available for extending an internal table.
    Error analysis                                                                               
    The internal table "\DATA=N_TH_DAT_N"                  
         could not be further extended. To enable                                                    
        error handling, the table had to be delete before this log was written.                      
        As a result, the table is displayed further down or, if you branch to                        
        the ABAP Debugger, with 0 rows.                                                                               
    At the time of the termination, the following data was determined for                        
        the relevant internal table:                                                                               
    Memory location: "Session memory"                                                            
        Row width: 72                                                                               
    Number of rows: 27865264                                                                     
        Allocated rows: 27865264                                                                     
        Newly requested rows: 128 (in 1 blocks)

    Ok - so it turns out that the transports from the Integration Kit wasn't installed on the BO Enterprise server.  Once that was done I could connect 100%.  Only problem is that I still can't drop down the node for the database fileds in Crystal Reports.  I am at least able to create a new report using the MDX driver and then the node drop down works.
    Blessings

  • 00 671: ABAP/4 processor: SAPSQL_ARRAY_INSERT_DUPREC error  in Production

    Dear Experts,
    I am facing the   problem,  with T-code MIRO.
    When we try to complete his activity in MIRO, it terminates with error 00 671: ABAP/4 processor: SAPSQL_ARRAY_INSERT_DUPREC, but it gives the billing no. Again when we try to display the billing no, it says that the doc no is does not exist.
    I have checked with number ranges in FBN1 also, How to change the status to "0" in FBN1 ? Wont it be a problem if we change the status to "0" now in production server..!!!
    the update error as follows
    1     CKML_F_POST_INDEX     V1 (no retry)     Initial
    2     POST_DOCUMENT     V1     Initial
    3     FI_WT_POST     V1     Initial
    4     K_PARKED_DOCUMENT_DELETE     V1     Initial
    5     K_DOCUMENT_UPDATE     V1     Initial
    6     HFPV_POST_RPSCO_V2     V2     Initial
    7     HFPV_POST_RPSCO_V2     V2     Initial
    8     G_GLDB_POSTING_A     V1     Initial
    9     AC_DOCUMENT_MM_UPDATE     V2     Initial
    10     K_OPEN_ITEM_POST     V1     Initial
    11     MCE_STATISTICS_UPD_V2     V2     Initial
    12     ME_UPDATE_INVOICE     V1 (no retry)     Initial
    13     MRM_INVOICE_DOCUMENT_POST     V1     Error
    14     SD_SCD_IV_SELCRITERIA_SAVE_DB     V1     Initial
    15     SWE_EVENT_CREATE_IN_UPD_TASK     V1     Initial
    Error details
    00 671: ABAP/4 processor: SAPSQL_ARRAY_INSERT_DUPREC
    Kindly suggest me the way how to do it..
    Thanks
    Priya

    Hi,
    please check the numer ranges for the Billing Document in SPRO.
    I guess there is something wrong with it.
    The error occurs if you want to save a Billing document and the primary key for the number still existists in the database. Are you using internal number range?.
    Have you changed the number range especially the current number manually?
    Perhaps it has something to do with your activities from this thread.
    How do I change invoice numbering.
    Have you transported the number range object?
    Thanks.
    Deepak Sharma

  • To find error in St22

    Hello experts,
    I was trying to load data from Flatfile to ODS. In MONITOR window i can see some 5000 records extracted; but its status color is red and when i go to data target, in the request tab QM status is red again and the added records are 0.
    Now my qn is i cant find the short dump for that in ST22. how can i trace it or is there anyother possibility for this?
    Points for guaranteed.

    1)Transfer (IDocs and TRFC): Errors occurred
       Data Package 1 : arrived in BW ; Processing : Data packet not yet processed
    2)Processing (data packet): Errors occurred
       Data Package 1 ( 3420 Records ) : Errors occurred
             Transfer rules ( 3420  Records ) : Errors occurred
                       Message missing: Transfer rules finished
                              Update rules ( 0 Records ) : Missing messages
    No where i can find chk in short dump,
    Canu suggest me plz.... thanks for the prompt reply

  • SAPSQL_ARRAY_INSERT_DUPREC Error

    Hello all,
    I am getting the dump "SAPSQL_ARRAY_INSERT_DUPREC" in RSA3 (Extract checker)  while selecting GL Account hierarchy from F4, can anyone explain me the reason for this?
    Where can i see all the GL Account hierarchies in ECC System.
    Thanks in Advance.
    Sathish T.

    HI,
    reagrding the second part of your question, tables SETHEADER, SETNODE, SETLEAF store all the group information (hierarchy nodes, hierarchy relationsship, account numbers within hierarchy nodes).
    For account groups SETCLASS is 0109.
    Best regards, Christian

  • Run-time error SAPSQL_ARRAY_INSERT_DUPREC occurred

    When creating a new SyncBo (T51) instance after syncing eventually MI Clients shows the following message:
    [20070315 01:28:14:343] E [MI/Sync ] Received exception info code 10 and detailed message "Exception while callSync: The ABAP/4 Open SQL arrayinsert results in duplicate database records. records in the data base."
    In sm21 shows message:
    AB0 Run-time error "SAPSQL_ARRAY_INSERT_DUPREC" occurred
    AB1 > Short dump "070316 205056 sapnw ELDA " generated
    Looking for SAPSQL_ARRAY_INSERT_DUPREC error in SAP Note we found the note 817849 (Runtime error SAPSQL_ARRAY_INSERT_DUPREC occurs during sync).
    We have downloaded and applied this note in Backend as note requires and ALL prerequisites of this note. Also we have upgraded to SP19 and Kernel to 155 (part 1 and 2). But problem continues and the client that happened this problem does not work any more, all new SyncBO instances created goes to MEREP_MON as Waiting status.
    The dump on duplicate record is happening when the user is synchronizing and when a record is getting inserted to table merep_10100.
    The solution /workaround could be to do a client reset for those devicesand test again and see if it is happening, but error returns happening after this.
    When this happen SyncBo instance keeps on Waiting status (MEREP_MON). We couldn't understand why this happen suddenly and then no more new SyncBo could be created, all goes to Waiting status. Reprocess (ShiftF5) or start handler (Shift10) does not take any effect.
    Best Regards,
    Rogério

    Hi Ajith
    I am getting the same error and below is the error message from ST22. The only change is I am using for MTR application and the sync fails for the 2nd time when synched for patches for the MTR application. As it is generic sync, could you please advice to get rid of the problem.
    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
      "LOG_INSERT_DB" "(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:
    If you use an ABAP/4 Open SQL array insert to insert a record in
    the database and that record already exists with the same key,
    this results in a termination.
    (With an ABAP/4 Open SQL single record insert in the same error
    situation, processing does not terminate, but SY-SUBRC is set to 4.)
    Thanks, Raj

  • Pls send me Real time SM21 and ST22 errors.at  least 4

    Hi,
           I am new guy in Basis .Pls send me SM21 and ST22 real time errors.I will give more reward points.
    regards,
    Jana

    Hi janardan
    Here I am sending the lists of some real time errors that i have encountered during my monitoring work:-
    SM21
    1) 06:14:20 DIA 001 010 ALEREMOTE         AB0 Run-time error "CALL_FUNCTION_SEND_ERROR"       occurred  
    2) 08:09:13 DIA 002 010 ASCHELVI     SA38 AB0 Run-time error "TIME_OUT" occurred
    3) 05:45:03 BTC 003 000 SAPSYS            D01 Transaction Canceled BT 510 ( )
    4)  10:32:55 DIA 003 010 WORKFLOW          H01 Enqueue of work item 000023517979 deleted by called   application.       
    ST22    
    1) 10.04.2008 11:34:17 sapbebr104 FFERNAND 010 C RAISE_EXCEPTION    1
    2) 10.04.2008 12:47:23 sapbebr102 JIGOMEZ 010 C SYSTEM_CANCELED    4
    3) 09.04.2008 12:48:13 sapbebr104 MLOLMEDO 010 C TIME_OUT    1
    4) 01.04.2008 07:46:11 sapbebr042 BMARIQUE 010 C LOAD_PROGRAM_LOST    3
    In SM21 u can look for messages like :
      >Printer problems
      >Signal 11
      >Short dumps
      >Time-outs
      >Matchcode problems
      >Aborted postings
      >Runtime error analysis
    ST22 is used for some abap dump analysis
    Award points if found helpful.
    Regards,
    Abinash

  • St22- error- ITAB_DUPLICATE_KEY  for prog - SBIE0001

    Hi All,
    could any one help me to resolve this below issue.
    In sm37 m getting a one job canceled due to ITAB_DUPLICATE_KEY  on production system. and it triggering to the below piece of code
    IF orgunits-plvar = last_plvar.
             MOVE-CORRESPONDING orgunits TO in_objects.
             APPEND in_objects.
           ENDIF.
           IF ( orgunits-plvar <> last_plvar ) OR ( sy-tabix = n_of_lines ).
             REFRESH main_co.
             CALL FUNCTION 'RH_GET_COSTCENTER_OF_OBJECT'
                EXPORTING
                    plvar              = last_plvar
                    begda              = p_begda
                    endda              = p_endda
    *            svect             = '1'
    *            active            = ' '
    *            dist               = ' '
                    object_only        = only_direct
                    buffered_access    = 'X'
                    read_it0001        = 'X'
                    i0027_flag         = ' '
                    ombuffer_mode      = ' '
                TABLES
                    in_objects         = in_objects
                    main_costcenters   = main_co
                EXCEPTIONS
                    OTHERS             = 0.
        ERROR>>>>>>>     INSERT LINES OF main_co INTO TABLE main_costcenters.    <<<<<<<<< ERROR
    How to resove this is there any sap note for this ?
    Regards,
    Sunil

    Job log overview for job:    BIREQU_DHKDP5CSETG1AHB7JXOB7CD2S / 00050100
    Date       Time     Message text                                                                  Message class Message no. Message type
    05.05.2014 00:05:04 Job started                                                                        00           516          S
    05.05.2014 00:05:04 Step 001 started (program SBIE0001, variant &0000000308035, user ID BWREMOTE)      00           550          S
    05.05.2014 00:05:04 Asynchronous transmission of info IDoc 2 in task 0001 (0 parallel tasks)           R3           413          S
    05.05.2014 00:05:04 DATASOURCE = 0ORGUNIT_ATTR                                                         R3           299          S
    05.05.2014 00:05:04 RLOGSYS    = BIPCLNT900                                                            R3           299          S
    05.05.2014 00:05:04 REQUNR     = REQU_DHKDP5CSETG1AHB7JXOB7CD2S                                        R3           299          S
    05.05.2014 00:05:04 UPDMODE    = F                                                                     R3           299          S
    05.05.2014 00:05:04 LANGUAGES  = *                                                                     R3           299          S
    05.05.2014 00:05:04 *************************************************************************          R8           048          S
    05.05.2014 00:05:04 *          Current Values for Selected Profile Parameters               *          R8           049          S
    05.05.2014 00:05:04 *************************************************************************          R8           048          S
    05.05.2014 00:05:04 * abap/heap_area_nondia......... 0                                       *         R8           050          S
    05.05.2014 00:05:04 * abap/heap_area_total.......... 34358689792                             *         R8           050          S
    05.05.2014 00:05:04 * abap/heaplimit................ 40000000                                *         R8           050          S
    05.05.2014 00:05:04 * zcsa/installed_languages...... DE                                      *         R8           050          S
    05.05.2014 00:05:04 * zcsa/system_language.......... E                                       *         R8           050          S
    05.05.2014 00:05:04 * ztta/max_memreq_MB............ 2047                                    *         R8           050          S
    05.05.2014 00:05:04 * ztta/roll_area................ 6500000                                 *         R8           050          S
    05.05.2014 00:05:04 * ztta/roll_extension........... 2000000000                              *         R8           050          S
    05.05.2014 00:05:04 *************************************************************************          R8           048          S
    05.05.2014 00:05:10 Internal session terminated with a runtime error (see ST22)                        00           671          A
    05.05.2014 00:05:10 Job cancelled                                                                      00           518          A

  • ST22 shortdump error.

    HI All,
    In SM37 the jobs finished finished sucessfully, but i am getting the following short dump error in st22.
    It is showing
    MESSAGE_TYPE_X" C
    SAPLRSATREE " or "LRSATREEF28 "
    RSATREE_START_ACTIVATION"
    the error says ' ods should have QM status green befor it is activated'
    but the requests are green in the manage and also monitor-details.
    the message also mentions - to reffer oss notes to update the program
    but i did not fine any one in service.sap.com.
    any one have an idea.
    i appriciate your comments.
    Thanks,
    Joseph M.

    Hi SRS,
    Thanks for the details.
    but do u have any idea how to delay the activation of ods for some time so that it waits for all the requestes turn green.
    because the job runs in the night. when i check in the morning all the requests are green in the ods.
    we are loading data using infopackage group. we have 5 loads in it. there may be conflict when activating the requests during these loads.
    Can u suggest some thing
    Thanks,
    Joseph M.

Maybe you are looking for