CX_HRPA_INVALID_PARAMETER DUMP

hi Experts
We have developed a function module which calculates certain amount based on certain criteria and update the amount in a wage type in Infotype 15.
The function module calculates the amount , but when im trying to update infotype 15 using HR_INFOTYPE_OPERATION it gives error
CX_HRPA_INVALID_PARAMETER
How to resolve this
I read few notes on sdn which says to check SAP notes , which i checked , all things are in place. Still it is not working.
Regards
sameer

hi please not the code below.
REPORT ZHR_TEST_2.
include ZHR_T_DATA.
SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
PARAMETERS : p_pernr TYPE pernr_d.
SELECTION-SCREEN END OF BLOCK b1.
**----- First Enqu
** CALL FUNCTION 'BAPI_EMPLOYEE_ENQUEUE'
EXPORTING NUMBER = P0015-pernr
IMPORTING RETURN = RETURNE.
* **------------- Update
CALL FUNCTION 'HR_INFOTYPE_OPERATION'
EXPORTING infty = '0015'
number = P0015-pernr
SUBTYPE = P0015-SUBTY
* OBJECTID =
* LOCKINDICATOR =
* VALIDITYEND =
* VALIDITYBEGIN =
* RECORDNUMBER =
record = P0015
operation = 'INS'
TCLAS = 'A'
DIALOG_MODE = '2'
* NOCOMMIT =
* VIEW_IDENTIFIER =
* SECONDARY_RECORD =
IMPORTING
RETURN = RETURN
KEY = KEY .
*CALL FUNCTION 'HR_INFOTYPE_OPERATION' *EXPORTING *INFTY = '0015' *NUMBER = P0015-PERNR *SUBTYPE = P0015-SUBTY *OBJECTID = P0015-OBJPS *LOCKINDICATOR = P0015-SPRPS *VALIDITYEND = P0015-ENDDA *VALIDITYBEGIN = P0015-BEGDA *RECORDNUMBER = P0015-SEQNR *RECORD = P0015 *OPERATION = 'INS' *TCLAS = 'A' *DIALOG_MODE = '2' *IMPORTING *RETURN = RETURN *KEY = KEY.
IF RETURN IS NOT INITIAL.
WRITE :/ 'Error Occurred'.
ENDIF.
**--------- Dequeue
CALL FUNCTION 'BAPI_EMPLOYEE_DEQUEUE'
EXPORTING NUMBER = P0015-PERNR .
------------ include code -----
*&---------------------------------------------------------------------* *& Include ZHR_T_DATA
*----------------- Data
DATA : P0015 LIKE P0015.
DATA : SECT_AMOUNT TYPE PAD_AMT7S.
DATA : RETURN LIKE BAPIRETURN1.
DATA : KEY LIKE BAPIPAKEY.
DATA : RETURNE LIKE BAPIRETURN1 .
data : v_airfare_amount type PAD_AMT7S.
P0015-PERNR = '17287'.
P0015-BEGDA = sy-datum.
P0015-ENDDA = sy-datum.
P0015-LGART = '5014'.
*P0015-PREAS = '01'.
P0015-WAERS = 'QAR'.
*p_pernr = P0015-PERNR.
* clear v_airfare_amount.
* CALL FUNCTION 'BAPI_EMPLOYEE_ENQUEUE' EXPORTING NUMBER = P0015-pernr IMPORTING RETURN = RETURNE.
CALL FUNCTION Zamt_calc EXPORTING pernr = '17287'
IMPORTING SECT_AMOUNT = v_airfare_amount.
CALL FUNCTION 'BAPI_EMPLOYEE_DEQUEUE'
EXPORTING NUMBER = P0015-PERNR.
*PERFORM calc_air.
*sect_amount = '10'.
P0015-BETRG = v_airfare_amount.

Similar Messages

  • SAP EP ESS CX_HRPA_INVALID_PARAMETER

    Dear Experts,
    Iam getting the below error while accessing the SAP EP ESS webdynpro screen.
    Category          
    ABAP Programming Error
    Runtime Errors    
    UNCAUGHT_EXCEPTION
    Except.           
    CX_HRPA_INVALID_PARAMETER
    ABAP Program      
    CL_HRESS_PER_OVERVIEW=========CP
    Application Component  PA-ESS-XX-WDA
    What can you do?                                                                             
    |
    |
    Note down which actions and inputs caused the error.                                     
    |
    |                                                                                             
    |
    |                                                                                             
    |
    |
    To process the problem further, contact you SAP system                                   
    |
    |
    administrator.                                                                           
    |
    |                                                                                             
    |
    |
    Using Transaction ST22 for ABAP Dump Analysis, you can look                              
    |
    |
    at and manage termination messages, and you can also                                     
    |
    |
    keep them for a long time.                                                               
    |
    |Error analysis                                                                               
    |
    |
    An exception occurred that is explained in detail below.                                 
    |
    |
    The exception, which is assigned to class 'CX_HRPA_INVALID_PARAMETER', was not           
    |
    |
    caught in                                                                               
    |
    |
    procedure "GET_INFTY_SUBTY_DATA" "(METHOD)", nor was it propagated by a RAISING          
    |
    |
    clause.                                                                                 
    |
    |
    Since the caller of the procedure could not have anticipated that the                    
    |
    |
    exception would occur, the current program is terminated.                                
    |
    |
    The reason for the exception is:                                                         
    |
    |
    Invalid parameter EXCEPTION, value                                                       
    |
    |                                                                                             
    |
    |
    The occurrence of the exception is closely related to the occurrence of                  
    |
    |
    a previous exception "CX_HRPA_INVALID_SUBTYPE", which was raised in the program          
    |
    |
    "CL_HRPA_READ_TIMECONSTRAINT===CP",                                                     
    |
    |
    specifically in line 142 of the (include) program                                        
    |
    |
    "CL_HRPA_READ_TIMECONSTRAINT===CM002".                                                  
    |
    |
    The cause of the exception was:                                                          
    |
    |                                                                                             
    |
    |
    Subtype  Not Permitted for Infotype 0105 &TCLAS&

    Hi Philip
    Check this SAP Notes
    1030938 - Infotype 0001: Dump CX_HRPA_INVALID_PARAMETER during saving
    1147540 - IT0008: Dump CX_HRPA_INVALID_PARAMETER
    BR
    SS

  • Strange Dump while using HR_INFOTYPE_OPERATION.

    Hi frnz,
    I am facing dump while using the FM 'HR_INFOTYPE_OPERATION' as below. <b>If I swap positions of w_p0041-endda and w_p0041-begda it does not give a dump but error msg is generated saying that no selection in the period(as obviously dates are in propper range).</b> <u>Whlie testing the FM in SE37 with the same data, it works fine.</u> Please help me find the problem.
    data: TCLAS like PSPAR-TCLAS,
          OPERATION like PSPAR-ACTIO,
          infty like PRELP-INFTY.
          infty = '0041'.
          OPERATION = 'MOD'.
          TCLAS = 'A'.
      CALL FUNCTION 'HR_INFOTYPE_OPERATION'
        EXPORTING
          INFTY                  = infty
          NUMBER                 = w_p0041-pernr
      SUBTYPE                =
      OBJECTID               =
      LOCKINDICATOR          =
         VALIDITYEND            = w_p0041-endda
         VALIDITYBEGIN          = w_p0041-begda
      RECORDNUMBER           =
          RECORD                 = w_p0041
          OPERATION              = OPERATION
          TCLAS                  = TCLAS
      DIALOG_MODE            = '0'
        NOCOMMIT               = SPACE
      VIEW_IDENTIFIER        =
      SECONDARY_RECORD       =
       IMPORTING
         RETURN                 =  Return
      KEY                    =

    Hi all ,
    I have already tried converting date to internal format, the data types are also fine. I am not able to paste the screen shot so here is a part of it. Please help.
    ************DUMP************************************
    If we can not remap we would like to just re-raise the
    exception like below like "RAISE EXCEPTION exception.".
    Unfortunately the kernel will then forget about the
    original source position.
    So this is the fallback strategy. Calling this method
    is only allowed if the exception can be resolved. Since
    this is not the case we indicate a parameter violation.
      RAISE EXCEPTION TYPE cx_hrpa_invalid_parameter
        EXPORTING
          previous  = exception
          parameter = 'EXCEPTION'.
    ENDMETHOD.
    ********************END**************
    Thanks
    Sachin

  • Getting dump when you hire an emp in Development system

    Hi,
    We are getting an ABAP dump when we hires an emp in development system where as the dump is not coming in Quality system. Kindly suggest any config settings need to changed.
    Please find the dump below for reference:
                                                                                    Error analysis                                                                               
    An exception occurred that is explained in detail below.                                
         The exception, which is assigned to class 'CX_HRPA_INVALID_PARAMETER', was not          
          caught in                                                                               
    procedure "RESOLVE_EXCEPTION" "(FORM)", nor was it propagated by a RAISING              
          clause.                                                                               
    Since the caller of the procedure could not have anticipated that the                   
         exception would occur, the current program is terminated.                               
         The reason for the exception is:                                                        
         Invalid parameter EXCEPTION, value                                                                               
    The occurrence of the exception is closely related to the occurrence of                 
         a previous exception "CX_HRPA_INVALID_INFOTYPE", which was raised in the                
          program "CL_HRPA_INFOTYPE_FACTORY======CP",                                            
         specifically in line 18 of the (include) program                                        
          "CL_HRPA_INFOTYPE_FACTORY======CM004".                                                 
         The cause of the exception was:                                                                               
    Infotype 0529 not permitted                                                                               
    Rgds
    Kumar

    Hi,
    Maybe specific to your master data maintainance, as it is working inQS1.
    Regards
    Team Member.

  • [Ugrapde ECC 5.0] Dump in PA-CM

    Hi all,
    We are currently upgrading from 4.6C to ECC 5.0
    We have got a problem when switching from Display to Modify in the HRCMP0001D transaction. A dump is generated with the following text :
    The exception 'CX_HRPA_INVALID_PARAMETER' was raised but was not caught at any 
    stage in the                                                                  
    call hierarchy.                                                                               
    Since exceptions represent error situations, and since the system could        
    not react adequately to this error, the current program,                       
    'CL_HRPA_RESOLVE_EXCEPTION=====CP', had to                                    
    be terminated.
    It did find a OSS Note <b>885513</b> which seems to be related but is for FI-TV-COS and not for PA-CM. And - I assume - the corrections apply to FI-TV programs...
    Has anybody experienced something similar ?
    Best regards,
    Guillaume

    Hi Sinchan, hi Suresh
    Sorry for the delay.
    What I did is that I added the
    * an event to avoid a short dump due to CE framework
    LOAD-OF-PROGRAM.
      PERFORM do_nothing(sapfp50p).
    into the program RHCMP_STARTNF that is called when you launch the transaction HRCMP0001D
    It is far better now ! 
    For the moment, we are just upgrading 'existing' functionalities but we are studying ECM also, for the future.
    Best regards,
    Guillaume

  • Updating custom infotype with FM 'HR_INFOTYPE_OPERATION' dumps

    Hi All,
    While updating a custom infotype 9008 with FM 'HR_INFOTYPE_OPERATION', its giving adump.
    Except.  CX_HRPA_INVALID_PARAMETER.
    I am using DIALOG_MODE as '1'. when I enter a valid field value to that particular field ( mandatory field) on that infotype, it gives dump.
    Can you suggest something which will solve this?
    Thanks.
    Dipti.

    Hi,
    Here is the dump.
    Runtime Errors         UNCAUGHT_EXCEPTION
    Except.                CX_HRPA_INVALID_PARAMETER
    Date and Time          12.11.2008 07:23:32
    Short text
    An exception occurred that was not caught.
    What happened?
    The exception 'CX_HRPA_INVALID_PARAMETER' was raised, but it was not caught
    anywhere along
    the call hierarchy.
    Since exceptions represent error situations and this error was not
    adequately responded to, the running ABAP program
    'CL_HRPA_RESOLVE_EXCEPTION=====CP' has to be
    terminated.
    Error analysis
    An exception occurred that is explained in detail below.
    The exception, which is assigned to class 'CX_HRPA_INVALID_PARAMETER', was not
    caught in
    procedure "RESOLVE_EXCEPTION" "(FORM)", nor was it propagated by a RAISING
    clause.
    Since the caller of the procedure could not have anticipated that the
    exception would occur, the current program is terminated.
    The reason for the exception is:
    Invalid parameter EXCEPTION, value
    The occurrence of the exception is closely related to the occurrence of
    a previous exception "CX_HRPA_VIOLATED_PRECONDITION", which was raised in the
    program "CL_HRPA_MASTERDATA_FACTORY====CP",
    specifically in line 6 of the (include) program
    "CL_HRPA_MASTERDATA_FACTORY====CM004".
    The cause of the exception was:
    Precondition Violated
    Missing RAISING Clause in Interface
    Program                                 SAPFP50P
    Include                                 FP50PE10
    Row                                     2,152
    Module type                             (FORM)
    Module Name                             RESOLVE_EXCEPTION
    Trigger Location of Exception
    Program                                 CL_HRPA_RESOLVE_EXCEPTION=====CP
    Include                                 CL_HRPA_RESOLVE_EXCEPTION=====CM001
    Row                                     80
    Module type                             (METHOD)
    Module Name                             RESOLVE
    Source Code Extract
    Line
    SourceCde
    50
    message_handler = message_handler.
    51
    return.
    52
    53
    catch cx_sy_move_cast_error.
    54
    endtry.
    55
    END-OF-DEFINITION.
    56
    57
    58
    try_to resolve_missing_infty_data    cx_hrpa_missing_infty_data.
    59
    try_to resolve_missing_authorization cx_hrpa_missing_authorization.
    60
    try_to resolve_invalid_feature       cx_hrpa_invalid_feature.
    61
    try_to resolve_unexpected_message    cx_hrpa_unexpected_message.
    62
    try_to resolve_missing_personid      cx_hrpa_missing_personid.
    63
    try_to resolve_invalid_infotype_db   cx_hrpa_invalid_infotype_db.
    64
    try_to resolve_invalid_customization cx_hrpa_invalid_customization.
    65
    try_to resolve_inconsistent_database cx_hrpa_inconsistent_database.
    66
    67
    68
    Just to ensure the macro can be used nowhere else.
    69
    DEFINE try_to.
    70
    END-OF-DEFINITION.
    71
    72
    If we can not remap we would like to just re-raise the
    73
    exception like below like "RAISE EXCEPTION exception.".
    74
    Unfortunately the kernel will then forget about the
    75
    original source position.
    76
    77
    So this is the fallback strategy. Calling this method
    78
    is only allowed if the exception can be resolved. Since
    79
    this is not the case we indicate a parameter violation.
    >>>>>
    RAISE EXCEPTION TYPE cx_hrpa_invalid_parameter
    81
    EXPORTING
    82
    previous  = exception
    83
    parameter = 'EXCEPTION'.
    84
    85
    ENDMETHOD.
    Regards,
    Dipti.

  • Lock ups and dumping psyical memory!!!

    Hi i have just installed a new pc most of the stuff im useing is from my old computer so i know they work fine im running a:
    P4 3GHZ Prescot 800MHz, HT-Enabled
    865PE Neo2-P
    512 DDR-400 Twin moss
    ATI Radeon 9000 pro
    PSU-400
    XP Pro
    My computer locks up alot when running intense games (games have worked before no problem) i also get a error saying dumping pysical memory, i have looked about and tried to solve this myself, i found that someone was haveing the exact same problem as me and he fixed it by turning the FSB down as his memory wasnt compatable with his motherboard if doing that works how do i do it ?
    Many thanks Jonathan

    Flappa, Your memory " clock" is fine and there is no need to "underclock it" as long as you did not mess with the Bios.
    I had the same problems. I could not even get thru a Clean install of windows as it would Blue Screen
    1- are you running in " Dual Channel Mode"?
    2- If so is your memory a " match Set"?
    some times memory even thought it has the same markings is not matched . Dual channel sets are matched and made to run together in "Dual Channel Mode"{
    ( Even though I had the same manufacturer memory my set would not run in Dual Channel without " Blue Screening" I bought a Matched Set of Kingston Valueram and have not had a problem since
    3- If it is not a matched set, pull one stick out and run it for a while , if it still bluescreens try the other stick
    4- raise your memory voltage to 2.7 or 2.8 ( which ever is the lowest that it runs stable)
    5- If all this does not work , run MEMTEST to see if there is a problem with both sticks
    6- you are running a Bios Version that supports the " Prescott Microcode" right?
    Let us know what your findings are
    Good Luck  
    Dave

  • Report J_1IEWT_CERT getting cancelled, generating ABAP dump!

    A long running report J_1IEWT_CERT in background mode is getting cancelled after running for a while and generating the following dump :
    Error analysis
        When changing or deleting one or more lines of the internal table
        "\PROGRAM=J_1IEWT_CERT\DATA=PRINTTAB[]" or when inserting in the table
         "\PROGRAM=J_1IEWT_CERT\DATA=PRINTTAB[]", 0 was used as
        the line index. An index less than or equal to zero is not
        allowed.
        The error can occur when using the following options:
        1. "INDEX idx" for specifying the line number in the table
         "\PROGRAM=J_1IEWT_CERT\DATA=PRINTTAB[]"
           where you want to change, insert or delete.
        2. "FROM idx" for specifying the start index when deleting a line
           area from or inserting a line area into the table
         "\PROGRAM=J_1IEWT_CERT\DATA=PRINTTAB[]".
        3. "TO idx" for specifying the end index when deleting a line
           area from or inserting a line area into the table
         "\PROGRAM=J_1IEWT_CERT\DATA=PRINTTAB[]".
        At the time of the termination, the table contained 17008 lines.
    How to correct the error
        If the error occurred in your own ABAP program or in an SAP
        program you modified, try to remove the error.
        If the error occures in a non-modified SAP program, you may be able to
        find an interim solution in an SAP Note.
        If you have access to SAP Notes, carry out a search with the following
        keywords:
        "TABLE_INVALID_INDEX" " "
        "J_1IEWT_CERT" or "J_1IEWT_CERT_F01"
        "FILTER_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".
    Tried searching for some SAP Notes to fix the issue, no success as of now, Please help me out...

    Have you checked these notes ?
    363107 Short dump occurs during TDS certificate printing.
      803806  Error while genrating TDS certificate 03.01.2005
      1066049  J1INCERT - Error while generating TDS certificate
    Regards,
    Subhash

  • Short dump 'Table does not exist in database'

    Hello All,
    When a report is executing it is going to short dump by saying 'Table does not exist in database'. As per the short dump analysis this issue is happening because of the following   Native SQL statement statement :
    Program :  %_T050N0 (This is a dynamic  program generating by SAP )
    Form Name :  DYN_LIC_SEL_TOT
    exec sql performing LOOP_MOVE_WRITE_ISAP.
    select single_plate, itm_num, ctry_code, model_lot,
    lic_hold_flg, qty into :dcat-lplate, :dcat-matnr,
    :dcat-werks, :dcat-charg, :dcat-holdflag,
    :dcat-qty from ZLICENSE_R2 where itm_num   = :p_matnr and
                    model_lot = :p_charg
    endexec.
    As per the customer this issue occurring since they migrated the SAP  back-end data base from Oralce to DB6. Here I felt that ZLICENSE_R2 is not migrated from the  Oracle to DB6. But as per the BASIS Team, even this table was not maintained in Oracle also. If the table was not maintained in the Oracle, this issue should have been there even before migration also.
    Following is the short dump details:
    Short text
        Table does not exist in database.
    What happened?
        The table or view name used does not
        exist in the database.
        The error occurred in the current database connection "DEFAULT".
    What can you do?
        Check the spelling of the table names in your report.
        Note down which actions and inputs caused the error.
        To process the problem further, contact you SAP system
        administrator.
        Using Transaction ST22 for ABAP Dump Analysis, you can look
        at and manage termination messages, and you can also
        keep them for a long time.
    Error analysis
        An exception occurred that is explained in detail below.
        The exception, which is assigned to class 'CX_SY_NATIVE_SQL_ERROR', was not
         caught in
       procedure "DYN_LIC_SEL_TOT" "(FORM)", nor was it propagated by a RAISING
    clause.
    Since the caller of the procedure could not have anticipated that the
    exception would occur, the current program is terminated.
    The reason for the exception is:
    Triggering SQL statement: "select single_plate, itm_num, ctry_code, model_lot,
    lic_hold_flg, qty from ZLICENSE_R2 where itm_num = ? and model_lot = ? "
    Database error code: "-204"
    Could you please  let me know what might be the reason for this issue.
    Many Thanks in Advance.

    Transaction SE11, input ZLICENSE_R2 for table name, and display the table. Did the table display? If not, that is the main problem.
    If the table displays, go to menu item Utilities -> Database Object -> Database Utility
    In the resulting screen, under the "Status" fields, you should see text "Exists in the database." If you don't, then the table exists in the dictionary, but doesn't exist in the database system. Click the "Create database table" button and then you should be able to run the program.
    You may need basis team's help to carryout some of these actions.

  • Short Dump while scrolling in a maintenance view

    A maintenance view has one field, defined as "Radiobutton".
    1) Select the radiobutton for one entry.
    2) Scroll down so that in the new page (i.e. the entries displayed in the new page) the entry selected in the first step is not visible.
    3) Select any radiobutton again corresponding to any of the entries displayed in the new page.
    4) On scrolling up again the short dump occurs.
    The short dump text says "More than one radio button is active".
    Any inputs in this regards are appreciated.
    Thanks.
    Gajendra.

    Hi,
    that means you are trying to make two radio buttons active.
    parameters: ra radiobutton group g1 default = 'X',
                rb radiobutton group g1.
    ra = 'X'.
    and rb = 'X'.
    in your case so obviously it will dump.
    check your coding..
    and show your code...
    Regards
    vijay

  • Is it possible to create manually a dump?

    Dear all,
    I have a question about Dumps created in SAP while programs run with unpredicted errors.
    I have a specific table defined in the dictionary which has two coloumns progId and path.
    The first one is a unique identifier given to a program and the second column is an absolute path on the
    unix server where SAP is installed.
    For example
    MyProg | /usr/tmpbatch/data/E200
    Means that the ABAP program named 'MyProg' will run and its output file (the output of the program) and the
    log file are created in /usr/tmpbatch/data/E200.
    In each of my programs, first of all I check the content of this table in order to ensure that the path is defined for the
    given program (and therefore I may be able to create avec success both output and log files). If there is no entry
    in the table for the given program, I leave the program by calling the STOP instruction.
    My programs run at night, so the next day the corresponding users read the content of the generated output/log files.
    As a result, if the path is not defined properly for a given program in the table, the program is not run and therefore
    there will be no output/logfile the next day.
    My question is How can I inform the user who arrives the next day observing that one program has not been run? How
    can I tell him by some kind of system message that the program exited because the path for the files had not been defined in
    my table?
    Each morning, we can analyse the dumps which were produced during the precedent day. So that we may know
    (approximately) what went wrong. But as far as I know, dumps are generated automatically by the system. Is it possible
    to generate a dump (by calling some fucntion) with an appropriate error message for my problem?
    Thanks in advance,
    Dariyoosh

    Hello again,
    First of all I would like to thank everybody for their attention to my problem and
    for spending time for answering my question. Thank you all very much.
    Currently, Thomas' solution about MESSAGE_TYPE_X seems to work pretty well
    for my problem. As all of you mentioned  that, there should be softer methods to inform
    users. One main problem is that the program which lanuches my programs during night
    is not a sap user, it is a Unix scheduler (please forgive me I don't know these administration
    details and how they work) so  according to what the administrator told me it is not possible
    to send email. As a result, I think I may go with MESSAGE_TYPE_X until I found another proper way.
    Once again, thank you all for your help.
    Kind Regards,
    Dariyoosh

  • Error while importing a dump file in Oracle 10g R1

    Hi all,
    While trying to import a schema using Data Dump, I am facing the following issue -
    UDI-00018 - Import utility version can not be more recent than the Data Dump server.
    Following is the version information of the source and target DB and the utilities :
    Source DB server : 10.1.0.2.0
    Export utility : 10.1.0.2.0
    Import utility : 10.1.0.2.0
    Target DB server : 10.1.0.2.0
    Export utility : 10.2.0.1.0
    Import utility : 10.2.0.1.0
    I can figure out the cause for the problem, but don't know how to resolve it.
    Any help will be appreciated.
    Thanks in advance.
    Gitika Khurana

    How did you get thre DMP file created and how are you trying to import the dump file? Could you post the commands you're using, please?

  • Error_Exception dump while opening the report in RRMX

    Hi All,
    When User trying to open the report Error_Exception dump is coming for few Info Providers. Please find attached dump for your reference.

    Issue is res loved,  We have analyze the short dump ,when loads were running and at that if time user executed the queries then that dump was occuring.

  • 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

  • Dump error while creating a new page in smartforms URGENT pls!!!

    while creating a new page it is showing me a dump error , that the superior program execption was not intercepted , i have even given the next page field also correctly, i have attached a mainwindow to that page and a text element to that . .
    thanks
    sridhar

    Hi Deena,
    This error:
    "[2012-07-10T14:50:30.005+05:30] [wls_ods1] [ERROR] [] [oracle.adfinternal.view.faces.config.rich.RegistrationConfigurator] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000JXkC9dU3FClqwsJb6G1FyhO000003D,0] [APP: odsm#11.1.1.2.0] Server Exception during PPR, #7[[
    javax.servlet.ServletException: Could not initialize class com.octetstring.vde.admin.services.client.VDEAdminServiceSoapBindingStub"
    is known issue
    Go to metalink, article: Unable To Connect To OVD 11g Webinterface Using ODSM. [ID 1282757.1]
    You need to apply that patch.
    I hope this helps,
    Thiago Leoncio.

Maybe you are looking for