Unable to run any transaction. ABAP runtime errors generated again and agai

Dear All,
I am updating the SAP BASIS support package SAPKB70012 in the DEV
server. The import phase was running through SPAM. It ran for 40
minutes and resulted in a ABAP dump. syntax error in program. I tried
to run SPAM once again, It gave another dump. whichever Transaction, I
ran, it resulted in ABAP DUMP. So i restarted the server and the same
dump was getting generated. Based upon previous experience, I executed
the tp command
tp r3i SAPKB70012 DEV pf=D:\usr\sap\trans\bin\TP_DOMAIN_DEV.pfl
tag=spam -Dclientcascade=yes -Drepeatonerror=8
It gave two warnings and a prompt
Warning: Parameter DBHOST is no longer used
Warning: Parameter DBNAME is no longer used.
and logs are getting created continously in trans directory and temp
directory.
Can you please suggest me the reason and the appropriate solution, if
there is still anything to be done.
How long will it take to finish.
Thanks in advance

I've the same problem.
Applying the patch, i've problems with the maximum number of lock entries in DB2 (-904), so the patch has been cancelled.
In this moment I can't logon to sap, i've a syntax error, and the problem continues

Similar Messages

  • ABAP runtime error for 0CRM_OPPT_H and I while running RSA3

    hello Gurus,
         I'm having problems while running RSA3 transaction for these data sources.
    0CRM_OPPT_H
    0CRM_OPPT_I
    0CRM_SALES_ACT_1
    0CRM_SALES_ACT_I.
    I'm getting ABAP runtime error for these.
    This is the error:
    Runtime Error          CALL_FUNCTION_CONFLICT_TAB_TYP
    Exception              CX_SY_DYN_CALL_ILLEGAL_TYPE
    I tried finding OSS notes for these, but I didn’t succeed.
    I activated the data source from RSA5, and then I tried RSA3. That time I got “Errors occurred during extraction”.
    After that I activated delta at BWA5, then I started getting runtime error.
    Even though I activated at BWA5, I am not able to see the data sources at BWA7.
    Am I missing any thing…please guide me through this….
    Thanks
    RKR

    Thanks for your replay... All the DS and related tables are active..
    But wen I tried to re-generate the DS again... this is the warning I'm getting... Any idea why I'm getting this....
    The even-numbered length of the DEC field SAMPLE_QTY_ALLOW can lead to problems
    <b>Message no. R8569</b>
    <b>Diagnosis</b>
    You want to use the field SAMPLE_QTY_ALLOW in the extract structure for DataSource 0CRM_OPPT_I. This field has a field of type 'DEC' (or 'CURR' or 'QUAN') with an even number of characters.
    This can create problems since the length resulting from calculations in ABAP (for example, in extractors or Customer Exits for extraction) is too large to be inserted in the database later (PSA in BW), causing a short dump.
    <b>Procedure</b>
    This warning is only relevant when the maximum length of this field is exceeded during extraction, for example when the field is expanded in the Customer Exit through a calculation.
    More information and a remedy can be found in SAP Note 641744.
    When I search the OSS note, SAP suggesting to apply 883310 note.
    In my company we are using CRM 4.0 servie pak8. SAP suggsting to install service pak 11, but my client is not interested to upgrade to 11 as CRM people are working on service pak 8.
    By any chance we can use specific note which change the ABAP code to solve this problem... Please give me some suggetions...
    Thanks
    RKR

  • Unable to run any transaction. ABAP runtime errors generated

    Dear All,
    I am updating the SAP BASIS support package SAPKB70012 in the DEV
    server. The import phase was running through SPAM. It ran for 40
    minutes and resulted in a ABAP dump. syntax error in program. I tried
    to run SPAM once again, It gave another dump. whichever Transaction, I
    ran, it resulted in ABAP DUMP. So i restarted the server and the same
    dump was getting generated. Based upon previous experience, I executed
    the tp command
    tp r3i SAPKB70012 DEV pf=D:\usr\sap\trans\bin\TP_DOMAIN_DEV.pfl
    tag=spam -Dclientcascade=yes -Drepeatonerror=8
    It gave two warnings and a prompt
    Warning: Parameter DBHOST is no longer used
    Warning: Parameter DBNAME is no longer used.
    and logs are getting created continously in trans directory and temp
    directory.
    Can you please suggest me the reason and the appropriate solution, if
    there is still anything to be done.
    How long will it take to finish.
    OS is Windows 2003
    ERP 2005
    Oracle 10g is the DB
    Thanks in advance
    Anil

    Thank you.
    I have gone throught the dump. and also pasting the dump below here.
    For whatever the transaction may be, the dump is " syntax error in the program for the corresponding transaction"
    I even cannot save the dump to the local file, again dump is coming. I took the printouts but could not attach them here.
    SYNTAX_ERROR
    syntax error in program SAPLSCP2.
    the following syntax error occured in program "SAPLSCP2" in include
    "CL_SALV_FORM_ELEMENT============CU in
    Line 13...
    I have already escalated the issue with high priority to SAP. But they still are not responding since 3 days.
    Hope anyone can throw some light on it.
    Thank you all

  • ABAP runtime error in ME2N Transaction

    Hi All,
    I am getting an ABAP runtime error when i run transaction ME2N and then click on th Account Assignment Button.
    This is the error i get.
    Runtime Errors         GETWA_NOT_ASSIGNED
    Date and Time          06/01/2009 16:35:59
    Short text
    Field symbol has not yet been assigned.
    The section of the code which is creating problem is
    2326|*... ... find the row that holds the first requested cell                                   |
    2327
    loop at ct_stin assigning <ls_stin>
    2328
    where start_indx le i_start.
    2329
    l_start = sy-tabix.
    2330
    endloop.                       "Y6DK065306
    >>>>>
    if <ls_stin>-filled eq abap_false.
    2332
    lt_delete_row-low    = <ls_stin>-row_pos.
    2333
    lt_delete_row-sign   = 'I'.
    2334
    lt_delete_row-option = 'EQ'.
    2335
    insert lt_delete_row into table lt_delete_row.
    2336
    endif.
    | 2337|         
    the internal table ct_stin is not gettin any data in Runtime.
    Can anybody help me out in analysing this.
    Saurabh

    As I understand you have modify the standard SAP program. The problem is when the internal table
    ct_stin does not have data the field symbol <ls_stin> does not have any assign. to correct this 
    LOOPAT CT_STIN ASSIGNING <LS_STIN>
    WHERE START_INDX LE I_START.
      L_START = SY-TABIX.
    ENDLOOP.                                                    "Y6DK065306
    Check <LS_STIN> IS Assigned.
    IF <LS_STIN>-FILLED EQ ABAP_FALSE.
      LT_DELETE_ROW-LOW = <LS_STIN>-ROW_POS.
      LT_DELETE_ROW-SIGN = 'I'.
      LT_DELETE_ROW-OPTION = 'EQ'.
      INSERT LT_DELETE_ROW INTO TABLE LT_DELETE_ROW.
    ENDIF.

  • Transaction IA12:ABAP runtime errors:TIME_OUT

    Hi,
    We are executing transaction IA12.We are getting ABAP runtime errors:Time_Out.
    We have searched for a SAP note to sort the issue:SAP Note 607086 - Functional location: Problems when displaying structure list.
    Please suggest what will be the option to solve the issue.
    Thanks.

    Hi,
    searching for the FORM routine where the timeout occurs ("mara_predecessor_f50") and excluding SAP notes that are modification notes or based on the implementation of modification notes, there is only one remaining note
    Note 658930 - Structure list: Configuration not considered with BOM
    for 46C up to Support Package SAPKH46C46.
    If this is still not in your system, the note may be a solution.
    If not, I'm running out of good ideas. Then also the SAP modification notes can be your last option.
    Regards,
    Klaus

  • Finding the transaction of an abap runtime error

    hello,
    is it possible to find out the corresponding transaction to an abap runtime error?
    till now i've got all informations like they are shown in ST22 in my abap program. but i'd also like to have the transaction code, not only the corresponding devclass, subapplication and application.
    does anyone know a function module or any other solution for that problem?
    thanks in advance
    joschi

    When you are analyzing your short dump via ST22, there is a section called "User, transaction..." where the following information is shown:
    Client
    User
    Language key
    Transaction
    Program
    Screen
    That section will show you the transaction code you need.
    I hope that helps,

  • MIR4 transaction is giving ABAP Runtime Error

    Hi Experts,
    When I am trying to display the invoice in MIR4 and/or MIRO the system is generating ABAP runtime error.  DYNPRO_FIELD_CONVERSION.  This is in Version ECC 6.0.
    Short text
        Conversion error
    What happened?
        The current screen processing action was terminated since a situation
        occurred where the application could not continue.
        This is probably due to an error in the ABAP program or in the curren
        screen.
    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 manag
        termination messages, in particular for long term reference.
    Error analysis
        The program has been interrupted and cannot resume.
        Program "SAPLMR1M" attempted to display fields on screen 6310.
        An error occurred during the conversion of this data.
    How to correct the error
        There was a conversion error in the output of fields to the screen.
        The formats of the ABAP output field and the screen field may not match.
        Some field types require more space on the screen than in the ABAP
        program. For example, a date output field on the screen requires two
        more characters than the corresponding field in the ABAP program. When
        the date is displayed on the screen, an error occurs resulting in this
        error message.
                      Screen name.............. "SAPLMR1M"
                      Screen number............ 6310
                      Screen field............. "DRSEG-REMNG"
                      Error text............... "FX015: Sign lost."
        Other data:
        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.
    Please help us to solve this issue.
    Thanks and Regards,
    Havina
    Edited by: Havina Kutty on May 19, 2009 11:54 AM

    Hello,
    Please refer
    Note 503934 - MIRO: Dump DYNPRO_FIELD_CONVERSION -> field 'REMNG'
    Note 445853 - MIR4:more credit memos than invoices for service
    Note 393189 - MIRO: Incorrect update of BPMNG -> DYNPRO_FIELD_CONVERSION
    Regards,
    Ravi

  • LSO_PSV2 - Create /w Resources freezing, ABAP runtime error, TIME_OUT

    Hello Experts,
    I have an individual user that is a part of a team that manages our LSO environment. He is experiencing a problem when performing a "Create with resources" on an instructor-led course.
    After choosing this option his session just spins but never enters the course details screen as expected.
    After anywhere from 15 - 30min the session returns an ABAP runtime error of "TIME_OUT". The error details state that the time out for ABAP programs is set to 3000sec (50min). The odd thing is that the program never reaches the 50 min marks but still throws the error.
    The user is able to select the "create w/o resources" option and get to the next screen as expected.
    I have run security traces (ST01) on his account and all looks fine (rc=0)
    He is one of several people that executes this transaction but is the only user that is receiving this issue. The team is assigned to the same position and shares the same PD profile. They share the same security roles and the same ABAP program is being run.These users are a third party vendor that remote in via citrix desktop.
    I have had our Basis team exam the ABAP runtime error and what is happening behind the scenes as this runs and they see no indication that the program is retrieving data even though it processes for a long time.
    Obviously this is a complex issue, I have searched for two weeks with no success. Any thoughts, suggestions are more than welcome at this point as the user is unable to perform needed work functions.

    Any solution on this one? I have the same problem with LSO_PSV2 :/

  • ABAP runtime errors    CONVERSION_CODEPAGE_UNKNOWN

    Hi All,
    We performed a system build. Upon validating the new system, we are encountering ABAP program errors when generating STMS import queue, viewing tables, testing RFC connections. Please refer to dump details below:
    ABAP runtime errors    CONVERSION_CODEPAGE_UNKNOWN
           Occurred on     17.11.2010 at 15:34:01
    Unable to convert from code page '1200' to code page '0120'.
    What happened?
    The current ABAP/4 program "SAPLTMSC " had to be terminated because
    one of the statements could not be executed.
    This is probably due to an error in the ABAP/4 program.
    What can you do?
    Note the actions and input that caused the error.
    Inform your SAP system administrator.
    You can print out this message by choosing "Print". Transaction ST22
    allows you to display and manage termination messages, including keeping
    them beyond their normal deletion date.
    Error analysis
    One of your chosen conversion tables (CODE PAGE) '1200' or '0120'
    is unknown to the system.
    For a list of conversion tables known to the system, see table
    TCP00. To display this, use Transaction SPAD.
    How to correct the error
    You can avoid this error by using a conversion table known
    to the system. Transaction SPAD allows you to display a
    list of these conversion tables.
    If you have modified the conversion table, use Transaction SP12
    to invalidate the code page buffer (CCC).

    Hi Nils,
    Thank you for your response. We checked the transaction SCP, unfortunately, it does not exist. Could you verify if this is the correct transaction code? With regard to kernel patch, yes we have the latest kernel patch. First, we performed kernel patch upgrade because we encountered issue during our SAP installation for V6R1. Our kernel patch level is not compatible with the said OS version. So, we performed reinstallation after the patch upgrade and we believe we are using the latest kernel for this system. Talking about the memory, we did not encounter any memory issues during the installation and after the installation of the SAP system.
    You mey refer to kernel and OS details below:
    46D patch level 2548
    OS version V6R1
    SAP version 46.C
    Could you give me further details regarding the character set? Based on the dumps, there's a problem with the conversion of character set. We already created SAP message on this matter and they want to connect into the system but unfortunately we do not have the saprouter to open the SAP connection.
    Your feedback/inputs will be greatly appreciated.
    Thank you in advance and have a great day ahead.
    Regards,
    Mark

  • ABAP runtime errors    SNAP_NO_NEW_ENTR

    The following errors occured just after login, can anyone tell me how to handle it?
    ABAP runtime errors    SNAP_NO_NEW_ENTRY
           Occurred on     0000.00.00 at 13:47:44
    Runtime error: Unable to write short dump.
    What happened?
    The current ABAP/4 program " " had to be terminated because
    one of the statements could not be executed.
    This is probably due to an error in the ABAP/4 program.
    Unfortunately, the original cause of the error cannot be determined
    because there is no suitable short dump in the table SNAP (which
    records information about the point of termination).
    termination).
    What can you do?
    Note the actions and input that caused the error.
    Inform your SAP system administrator.
    You can print out this message by choosing "Print". Transaction ST22
    allows you to display and manage termination messages, including keeping
    them beyond their normal deletion date.
    Error analysis
    Error analysis
    Unfortunately, the original cause of the error cannot be
    determined, since there is no suitable short dump in table SNAP.
    The table SNAP probably already contains a number of short dumps
    and cannot accept any more. Please check the situation using the
    system log.
    The table SNAP contains all the short dumps for the last 7 days.
    How to correct the error
    Check the system log for each cause of error.
    More space probably needs to be provided for table SNAP
    using database means.
    If the error occurred in a non-modified SAP program, you may be
    able to find a solution in the SAP note system.
    If you have access to the note system yourself, use the following
    search criteria:

    hello,
    Check these:
    Note 495297 - DB6: Monitoring transaction log
    Re: Question. usage of transaction log
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/f03d5fb8-b619-2b10-c383-c6d56872829e&overridelayout=true
    Ideally, db2diag.log should tell you this information.
    Hope it helps.
    thanks,
    Prasanna

  • ABAP runtime errors SNAP_NO_NEW_ENTRY

    The following errors occured just after login, can anyone tell me how to handle it?
    ABAP runtime errors SNAP_NO_NEW_ENTRY
    Occurred on 0000.00.00 at 13:47:44
    Runtime error: Unable to write short dump.
    What happened?
    The current ABAP/4 program " " had to be terminated because
    one of the statements could not be executed.
    This is probably due to an error in the ABAP/4 program.
    Unfortunately, the original cause of the error cannot be determined
    because there is no suitable short dump in the table SNAP (which
    records information about the point of termination).
    termination).
    What can you do?
    Note the actions and input that caused the error.
    Inform your SAP system administrator.
    You can print out this message by choosing "Print". Transaction ST22
    allows you to display and manage termination messages, including keeping
    them beyond their normal deletion date.
    Error analysis
    Error analysis
    Unfortunately, the original cause of the error cannot be
    determined, since there is no suitable short dump in table SNAP.
    The table SNAP probably already contains a number of short dumps
    and cannot accept any more. Please check the situation using the
    system log.
    The table SNAP contains all the short dumps for the last 7 days.
    How to correct the error
    Check the system log for each cause of error.
    More space probably needs to be provided for table SNAP
    using database means.
    If the error occurred in a non-modified SAP program, you may be
    able to find a solution in the SAP note system.
    If you have access to the note system yourself, use the following
    search criteria:

    补充两句:
    1. SNAP表的Reorganization应该在后台通过定期的(每天)job执行,参看Note 16083。
    2. 如果登录系统即发生Dump,怀疑是否SNAP的table space是导致这个Dump的原因,考虑可能有其它致命错误。如果登录后还可以执行transaction,尝试执行SM21,DB02检查。

  • ABAP Runtime Error on EP

    Dear SDN,
    While I run particular BW report thru EP i Get ABAP Runtime Error.
    This error is observed only on particular PC, on rest its working fine....
    also we uninstalled SAP GUI & Reinstalled it...
    but still error persist....
    can any one suggest wht can be the way to come out of the problem...
    Regards,
    Purav

    purav,
    I think thr should be prblm in SAP GUI.
    You can display your reports w.o having SAP GUI installed
    by providing ITS (Internet Transaction Server) Deteils in your System.
    Please provide these information to your system in System Administration:
    PARAMETERS VALUE :
    ITS Description :its
    ITS Host Name  : 10.252.3.51:8001 (R/3 System Host:ITS port)
    ITS PATH :sap/bc/gui/sap/its
    ITS PROTOCOL : http
    Note : (V.Impotant)  : SAP GUI Type : GUI for HTML (For ITS )
    Test the system:
    System admin ->support ->sap application ->sap transaction..
    Regrards,
    Ram

  • ABAP Runtime Error     Error Code.......

    Hi ,
    I sheduled the<b> ABAP & BASIS patch in background</b>, but after some time I tried to login in system through gui..its showing..<b>ABAP Runtime Error        Error Code</b>..its not allowing me to login in sap system in gui mode...
    pls any one help me resolve this problem.
    Kind Regards,
    Gopinath

    Answere is right here friends
    Hi All,
    I was applying support package SAPKB0014 in ECC6 on AS/400 operating system , I too had faced similar problem "syntax error in program SAPLSAPS on clicking that the error on status bar it recomplie again and then same error" unable to login through SAP logon.
    I checked from operating system level I found that the Job is still running in background so I waited more than 10400 sec than automatically I was able to login I reconfirmed it in SM37.
    so dont panic just wait till Job is completed.
    Caution!! Meanwhile do not do anything that might effect the running job do not cancel or shutdown or restart process. It will work !!
    Hope you read this before doing anything
    Thanks
    Surojeet Dey

  • ABAP Runtime error while activating Update rules.

    Hi Gurus,
    Actually we are in NW 2004's SP9.
    While activating the update rules of cube "0PY_PPC01" it is going to ABAP runtime error. It is giving the key words like "MESSAGE_TYPE_X"
    "%_T005K2" or "INSTANTIATE". And i apply NOTEs also i am unable to fix it.
    Can any one give  correct NOTE number that can fix it or any suggestions.
    Thanks in advance.
    Thanks
    Raju.k

    Hi Sven,
    Now we are also in SP11, But the thing is all the other UR are working fine Except
    this UR. Even there is no perticular NOTE number for this.
    Thanks
    Raju.k

  • Abap runtime error CL_AI_CRM_OBJECT_LMDB============CP

    Dear All,
    We are setting up Solman 7.1 sp08 for VAR scenario.
    As we faced some issues with duplicated ibase components SAP suggested us to implement note 2012029.
    After following step by step and running the reporrts mentioned in above note like report AI_CRM_PRODUCT_DELETE we started getting an abap runtime error.
    SAP is telling us to re implement the note but it does not resolve our issue.
    Now we are unable to create incidents, or to run trx ib_gen.
    Because of this, job refresh_admin_data_from_support is getting cancelled.
    find attached screenshot showing dump.
    all suggestions or comments are welcome!
    regards,
    German

    Hi German,
    Looks like your report CL_AI_CRM_OBJECT_LMDB============CP is corrupted. Can you try restoring this program to original version by going to Version management in SE38?
    Regards,
    Vivek

Maybe you are looking for

  • Mac Plus software needed

    I have an original 128K Mac that has been upgraded to a 1MB Mac Plus that is being readied for sale. Unfortunately, somewhere in this mess I have managed to lose the OS boot floppy. I have the complete set of System 7 install diskettes, but the proFi

  • Customer tax exemption is not deduction in 4.7 version?

    Dear All, With reference to customer tax exemption, Washing allowances has to be exempted for the employees. I have created separate exemption wage type for washing allowance. In rule i have mentioned INCTX SEXM 3WSH A but it is not deducting in the

  • Resource Related Billing - DP81/82/DP91 - Exit to transfer pricing fields

    Dear SAP Experts, I'm facing this requirement where by I needed to push some information from a custom field in a WBS Project into Quotations and Billing Requests created during DP81/DP82 and DP91. These fields will then be a parameter for pricing an

  • Why is Mail rule syncing only one way?

    Odd. I've got a Mac mini and an iMac, both running 10.8.2, both with iCloud syncing Documents & Data. Mail on the mini has rules -- created on that machine -- for SpamSieve that are not syncing to the iMac; in fact, both rules disappear every few day

  • Where do large FLV files go on Mac OS Lion

    Where do large FLV video files get stored on Mac OS, Mountain Lion? Firefox stores small FLV video files (less than 10 minute long) under /Library/Application Support/Firefox/Profiles/<user's profilename>/Cache, but it does not store larger ones (lon