Short Dump testing 0CRM_SALES_ACT_1 Datasource Extraction

Hi
Please can someone assist with the following problem in CRM 4.0.  Using transaction RSA6-Extractor Checker S-API for 0CRM_SALES_ACT_1, we get a short dump when clicking on 'Extraction'.  The following error message is displayed.
'An exception occurred. This exception is dealt with in more detail below       
. The exception, which is assigned to the class 'CX_SY_DYN_CALL_ILLEGAL_TYPE', 
was neither                                                                   
caught nor passed along using a RAISING clause, in the procedure "INSTANTIATE" 
"(FORM)"
Any assistance is much appreciated.
Thanks
Neil

Resolved.

Similar Messages

  • Short Dump while checking DataSource contents in R3 (Transaction RSA3)

    Hello all,
    I am having trouble with a DataSource (2LIS_11_VAITM) in the R3 Source System (IDES 6.0). When I try to view the contents of this DataSource through Transaction RSA3, I get the following Short Dump Error.....
    Could someone pls help me with this.
    Thanks,
    SD
    ============================================================================
    Runtime Errors         CONNE_IMPORT_WRONG_STRUCTURE
    Except.                CX_SY_IMPORT_MISMATCH_ERROR
    Date and Time          18.03.2009 09:56:23
    Short text
         Error when importing object "MC11VA0ITM_TAB".
    What happened?
         Error in the ABAP Application Program
         The current ABAP program "SAPLMCEX" had to be terminated because it has
         come across a statement that unfortunately cannot be executed.
    Error analysis
         An exception occurred that is explained in detail below.
         The exception, which is assigned to class 'CX_SY_IMPORT_MISMATCH_ERROR', was
          not caught in
         procedure "MCEX_BW_LO_API" "(FUNCTION)", 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:
         When attempting to import data, the
         structure of the complex object "MC11VA0ITM_TAB" was not compatible with the
         target object. The error occurred with component no. 31.
    Missing RAISING Clause in Interface
         Program                                 SAPLMCEX
         Include                                 LMCEXU06
         Row                                     1
         Module type                             (FUNCTION)
         Module Name                             MCEX_BW_LO_API
    Trigger Location of Exception
         Program                                 SAPLMCEX
         Include                                 LMCEXU06
         Row                                     263
         Module type                             (FUNCTION)
         Module Name                             MCEX_BW_LO_API

    Hi SD,
    The 11_Vaitm is a LO datasource, before checking its data setup tables need to be filled for it.
    For filling the setup tables, first you have to delete the existing setup table data and ensure all the delta queues are empty.
    Delete the setup tables: Go to TCODE LBWG and in the application give 11 and execute.
    Delete all entries in Delta Queue, TCODE RSA7 for application 11.
    Delete the entries in logistic queue: Check in TCODE SMQ1, if there are any entries for application .
    Refill the setup tables: SBIW -> Settings for application specific datasources -> Logistics -> anaging extract strucutre -> Initilization -> Filling the setup table ->Application specific setup of data -> SD-Sales order perform setup.
    Then try RSA3. Hope it helps.
    Regards,
    Pankaj

  • Short dump while DB Connect extraction(PERFORM_CONFLICT_TAB_TYPE)

    HI ALL,
    Here i am facing a problem while loading master data for one info object by using DB Connect source system, it is going to short dump with runtime error PERFORM_CONFLICT_TAB_TYPE and the exception is CX_SY_DYN_CALL_ILLEGAL_TYPE  but for other info objects i can able to load the data. i have seen some of the related threads in SDN community, they have given some notes, in those they have mentioned that implementing support package 2 will resolve the problem, but we are very much ahead of support package 2. the below is the Error analysis from ST 22.
    Error analysis                                                                    
        An exception occurred. This exception is dealt with in more detail below      
        . The exception, which is assigned to the class 'CX_SY_DYN_CALL_ILLEGAL_TYPE',
         was neither                                                                  
        caught nor passed along using a RAISING clause, in the procedure              
         "RSDBC_DB_DATA_RECEIVED" "(FUNCTION)"                                        
    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:                                              
        Incorrect call of FORM "CONVERT_ITAB_RFC".                                    
        The FORM call is incorrect for parameter number 1.                            
        The current internal table passed to the formal table parameter has           
        a type that is not compatible with the type of the formal parameter.          
        The FORM "CONVERT_ITAB_RFC" is defined in the program                         
         "GP479V6EWNRI2LAHIG5C1GS5QFV".                  
    This is very very urgent, please give me reply.
    Many Thanks in Advance.
    Jagadeesh

    HI Pankaj/Chitrarth,
    Thanks for your reply.
    i am loading master data into our own defined infoobject and it's name is connection id(SFI_CONID). and the details of my bw system are
    SAP BW Release : 350 Level : 0019 Support package:SAPKW35019
    SAP BASIS Release : 640 Level : 0019 Support package : SAPKB64019.
    Many Thanks in Advance.
    Jagadeesh

  • Short dump error when extracting from one of the datasource in R/3 to BW

    When extracting from one of the datasource I am getting the short dump. below is the source code of the same.
    Source code extract
    Get boundaries of next TID block
    L_FROM_INDEX = L_TO_INDEX + 1.
    IF L_FROM_INDEX GT NFILL.  EXIT.  ENDIF.
    L_TO_INDEX   = L_TO_INDEX + L_BLOCK_SIZE.
    IF L_TO_INDEX GT NFILL.
      L_TO_INDEX = NFILL.
      L_BLOCK_SIZE = L_TO_INDEX - L_FROM_INDEX + 1.
    ENDIF.
    Create hashed index on TID of TID table
    CLEAR L_TH_TID_IDX.
    LOOP AT TIDTAB FROM L_FROM_INDEX TO L_TO_INDEX.
      L_S_TID_IDX-TIDIX = SY-TABIX.
      L_S_TID_IDX-TID   = TIDTAB-TID.
      COLLECT L_S_TID_IDX INTO L_TH_TID_IDX.
    ENDLOOP.
    Select TID block from STATE table
    SELECT * INTO TABLE L_T_STATE
           FROM ARFCSSTATE FOR ALL ENTRIES IN L_TH_TID_IDX
           WHERE ARFCIPID   EQ L_TH_TID_IDX-TID-ARFCIPID
             AND ARFCPID    EQ L_TH_TID_IDX-TID-ARFCPID
             AND ARFCTIME   EQ L_TH_TID_IDX-TID-ARFCTIME
             AND ARFCTIDCNT EQ L_TH_TID_IDX-TID-ARFCTIDCNT
           ORDER BY PRIMARY KEY.
    Consistence check
    DESCRIBE TABLE L_T_STATE LINES L_LINES.
    IF L_LINES NE L_BLOCK_SIZE OR
       L_LINES EQ 0.
      MESSAGE X097(SY).
    ENDIF.
    PERFORM DELETE_BATCH_JOB
            USING    L_T_STATE
            CHANGING L_S_TID1.
    Update LUW-Status und Zeit
    CLEAR L_T_STATE_IDX.
    CLEAR L_TH_TID2_IDX.
    CLEAR L_T_TID.
    LOOP AT L_T_STATE INTO L_S_STATE.
      L_S_STATE_IDX-TABIX = SY-TABIX.

    Hi Pavan,
                     This is a table space error.
    Regards,
    rahul

  • Short Dump in SAP BW Sys while extracting data from R/3

    HI All,
    I am getting short dump problem in sap bw while extracting the data from r/3 to bw info cube.
    the error message is like this,
    Runtime Error          DBIF_RSQL_SQL_ERROR
    Except.                CX_SY_OPEN_SQL_DB
    Date and Time          11.05.2011 09:36:51
    ShrtText
    An SQL error occurred when accessing a table.
    What can you do?
    Make a note of the actions and input which caused the error.
    To resolve the problem, contact your SAP system administrator.
    You can use transaction ST22 (ABAP Dump Analysis) to view and administer
    termination messages, especially those beyond their normal deletion
    date.
    How to correct the error
    Database error text........: "ORA-14400: inserted partition key does not map to
    any partition"
    Internal call code.........: "[RSQL/INSR//BIC/B0000115000 ]"
    Please check the entries in the system log (Transaction SM21).
    You may able to find an interim solution to the problem
    in the SAP note system. If you have access to the note system yourself,
    use the following search criteria:
    "DBIF_RSQL_SQL_ERROR" CX_SY_OPEN_SQL_DBC
    "GPCX2UNC5JG556R7DPSFJUGJS1Z" or "GPCX2UNC5JG556R7DPSFJUGJS1Z"
    |    "INSERT_ODS"                
    If you cannot solve the problem yourself and you wish to send
    an error message to SAP, include the following documents:
    1. A printout of the problem description (short dump)
    To obtain this, select in the current display "System->List->
    Save->Local File (unconverted)".
    2. A suitable printout of the system log
    To obtain this, call the system log through transaction SM21.
    Limit the time interval to 10 minutes before and 5 minutes
    after the short dump. In the display, then select the function
    "System->List->Save->Local File (unconverted)".
    3. If the programs are your own programs or modified SAP programs,
    supply the source code.
    To do this, select the Editor function "Further Utilities->
    Upload/Download->Download".
    4. Details regarding the conditions under which the error occurred
    or which actions and input led to the error.
    The exception must either be prevented, caught within the procedure
    "INSERT_ODS"
    "(FORM)", or declared in the procedure's RAISING clause.
    To prevent the exception, note the following:
    System environment
    SAP Release.............. "640"
    Application server....... "bwdev"
    Network address.......... "10.10.100.36"
    Operating system......... "Windows NT"
    Release.................. "5.2"
    Hardware type............ "8x AMD64 Level"
    Character length......... 8 Bits
    Pointer length........... 64 Bits
    Work process number...... 0
    Short dump setting....... "full"
    Database server.......... "BWDEV"
    Database type............ "ORACLE"
    Database name............ "BWD"
    Database owner........... "SAPR3"
    Character set............ "English_United State"
    SAP kernel............... "640"
    Created on............... "Aug 17 2008 20:56:58"
    Created in............... "NT 5.2 3790 Service Pack 1 x86 MS VC++ 14.00"
    Database version......... "OCI_10201_SHARE "
    Patch level.............. "247"
    Patch text............... " "
    Supported environment....
    Database................. "ORACLE 9.2.0.., ORACLE 10.1.0.., ORACLE
    10.2.0.."
    SAP database version..... "640"
    Operating system......... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2,
    Windows NT 6.0"
    Memory usage.............
    Roll..................... 16128
    EM....................... 6265200
    Heap..................... 0
    Page..................... 0
    MM Used.................. 5972296
    MM Free.................. 289384
    SAP Release.............. "640"
    User and Transaction
    Information on where terminated
    The termination occurred in the ABAP program "GPCX2UNC5JG556R7DPSFJUGJS1Z" in
    "INSERT_ODS".
    The main program was "SAPMSSY1 ".
    The termination occurred in line 41 of the source code of the (Include)
    program "GPCX2UNC5JG556R7DPSFJUGJS1Z"
    of the source code of program "GPCX2UNC5JG556R7DPSFJUGJS1Z" (when calling the
    editor 410).
    Processing was terminated because the exception "CX_SY_OPEN_SQL_DB" occurred in
    the
    procedure "INSERT_ODS" "(FORM)" but was not handled locally, not declared in
    the
    RAISING clause of the procedure.
    The procedure is in the program "GPCX2UNC5JG556R7DPSFJUGJS1Z ". Its source code
    starts in line 21
    |    of the (Include) program "GPCX2UNC5JG556R7DPSFJUGJS1Z ".

    Hi,
    This error  occurs if you want to insert an entry in the table that does not match the value range of any partition. In such a case, you must compare the value of the entry with the definitions of the partitions to determine the cause of the error.
    please run the following test/repair in transaction RSRV ,
    RSRV -> All Elementary Test -> PSA Tables -> Consistency Between PSA Partitions and SAP Administration  Information
    -> include the PSA table
        /BIC/B0000115000
    Check OSS note 339896 which explains  the repair procedure.
    Regards,
    Lokesh

  • Short dump error when extracting delta records from R/3

    I am working on BW 3.5 and I am facing some short dump error when extracting delta records from the r/3 to BW.
    Below is the error message
    Kindly do the needful ASAP.
    Job started
    Step 001 started (program SBIE0001, variant &0000000024277, user ID BWREMOTE)
    Asynchronous transmission of info IDoc 2 in task 0001 (0 parallel tasks)
    DATASOURCE = 0ISCM_PAYMENT_01
             Current Values for Selected Profile Parameters               *
    abap/heap_area_nondia......... 2000000000                              *
    abap/heap_area_total.......... 2000000000                              *
    abap/heaplimit................ 40000000                                *
    zcsa/installed_languages...... DE                                      *
    zcsa/system_language.......... E                                       *
    ztta/max_memreq_MB............ 2047                                    *
    ztta/roll_area................ 6500000                                 *
    ztta/roll_extension........... 2000000000                              *
    2,454 LUWs confirmed and 2,454 LUWs to be deleted with function module RSC2_QOUT_CONFIRM_DAT
    ABAP/4 processor: MESSAGE_TYPE_X
    Job cancelled

    Hi,
    I look at the transaction ST22 to see which type of error has given you. Take a look at the notes to correct the error.
    Another option is to look at OSS notes, because the error is giving you a standard extractor.
    Greetings,

  • Short dump while extracting data

    Hi,
    When i extract the data from the datasource 2lis_05_item in rsa3 i m getting the following short dump. Can anyone tell what to do in this case?
    Runtime Errors         CONNE_IMPORT_WRONG_STRUCTURE
    Exceptn                CX_SY_IMPORT_MISMATCH_ERROR
    Date and Time          06.12.2006 09:42:15
    ShrtText
         Error when importing object "MC05Q00ITM_TAB".
    What happened?
         Error in ABAP application program.
         The current ABAP program "SAPLMCEX" had to be terminated because one of t
         statements could not be executed.
         This is probably due to an error in the ABAP program.
         When attempting to import data, the
         structure of the complex object "MC05Q00ITM_TAB" was not compatible with
         target object.
    Error analysis
         An exception occurred. This exception is dealt with in more detail below
         . The exception, which is assigned to the class 'CX_SY_IMPORT_MISMATCH_ER
          was neither
         caught nor passed along using a RAISING clause, in the procedure
          "MCEX_BW_LO_API" "(FUNCTION)"
         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:
         When attempting to import data, the structure of the complex object
          "MC05Q00ITM_TAB"
         was not compatible with the target object. The error occurred with
    component no. 32.
    sing RAISING Clause in Interface
    Program                                 SAP
    Include                                 LMC
    Row                                     5
    Module type                             (FU
    Module Name                             MCE
    gger Location of Exception
    Program                                 SAP
    Include                                 LMC
    Row                                     241
    Module type                             (FU
    Module Name                             MCE
    rce Code Extract
    e  SourceCde
    11         endif.
    12       enddo.
    13     END-OF-DEFINITION.
    14 ***** end macro *****

    I suppose that you are doing enhancement to your datasource 2LIS_02_ITM
    Have you done the following steps in the extractor:
    1. Append the new field in MC02M_0ITM structure
    2. Append the new field in MCEKPO structure
    3. Use Tcode LBWE and expand the Purchsing to get 2LIS_02_ITM and click on the Datasource to uncheck the 'hide' and 'fields only'
    4. Activate the data source, by using Tcode RSA5
    3. After that I have make changes to the user-exit to add logic for the new field
    Do remember to carry out the following steps before you modify the Extraction structure:
    1. Make sure that the following steps are carried out at a time when no updates are performed so that no data is lost.
    2. Start the update collective run directly from within the Customizing Cockpit. Up to PI(-A) 2001.2 , this collective run exclusively concerns the V3 update. As of PI(-A) 2002.1, depending on the update mode setting of the application, the collective run concerns either the V3 update or the update from the extraction queue ("Delta Queued", see Note 505700).
    3. Load all data of the respective DataSource into the BW System.
    Hope it helps.
    regards
    Vinod

  • 0PROJECT_ATTR  datasource throws short dump in bw

    0PROJECT_ATTR datasource throws short dump in BW.  On checking the same at source system level in R3 using RSA3 transaction, the error has been cornered that "Project I0640-03/0001 does not exist".
    Now i would like to know the related transaction codes to even more corner the problem.
    Can anyone help me out in this.
    Regards
    Baskar
    Message was edited by: Baskar Rajagopalan

    For information, I dont have authorisation to use SE93.
    AS of now the problem has already been cornered that the issue is in R3 extraction only.
    Message was edited by: Baskar Rajagopalan

  • CX_SY_FILE_OPEN_MODE - short dump on production but not in Dev and Test

    Hello,
    I'm getting the follwoing short dump in production when I run the program which writes the data to application server. I have open data set and close data set. Same program when I in development and test I do not get any short dump. Can any know what could be cause for this.
    CX_SY_FILE_OPEN_MODE
    Copy paste of error analysis from ST22 short dump -
    Error analysis
        An exception occurred that is explained in detail below.
        The exception, which is assigned to class 'CX_SY_FILE_OPEN_MODE', was not
         caught in
        procedure "DATA_UPLOAD_APP_SERVER" "(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:
        When accessing the file "/bw/FTPOUT/BPR/OTHER/test.csv", the system recognized
         that this file is
        not open. Therefore, the file cannot be accessed.

    The file could not be OPENed in your production system for a variety of reasons - no authorization, file doesn't exist etc. You should have check sy-subrc right after OPEN DATASET and if not zero, yous should not TRANSFER or READ the file and instead you should have given a message with sy-msgid and sy-msgno which would give you the reason. The dump here is simply saying that OPEN is unsuccessful, so any subsequent READ or TRANSFER would throw runtime dump, if done after an unsuccessful OPEN.

  • Short dump GETWA_NOT_ASSIGNED while transporting Datasource in BI 7.0

    Hi Friends,
    I am getting an error, while trying to transport Datasource into quality system. The Transport request log says that "Program terminated (job: RDDEXECL, no.: 11372100)"
    If I check the log in SM37 of target system it gives following steps
    29.06.2007 11:37:21 Job started
    29.06.2007 11:37:21 Step 001 started (program RDDEXECL, variant , user ID DDIC)
    29.06.2007 11:37:21 All DB buffers of application server bdhp4488 were synchronized
    29.06.2007 11:37:30 SQL: 29.06.2007 11:37:30 DDIC
    29.06.2007 11:37:30  CREATE UNIQUE INDEX "/BIC/B0000566001~0" ON
    29.06.2007 11:37:30 "/BIC/B0000566001" ("REQUEST", "DATAPAKID",
    29.06.2007 11:37:30 "PARTNO", "RECORD") PCTFREE 10 LOCAL INITRANS 002
    29.06.2007 11:37:30 TABLESPACE PSAPSR3 STORAGE (INITIAL
    29.06.2007 11:37:30 0000000016 K NEXT        0000000160 K MINEXTENTS
    29.06.2007 11:37:30 0000000001
    If I see the short dump in ST22 in target system (quality) The I get error
    "Runtime Errors         GETWA_NOT_ASSIGNED"
    Could somebody help me in resolving this?
    Thanks and regards,
    Balaraj

    Thanks Edwin,
    My issue is still not resolved.
    Now the error that I am getting while transporting the Transformation is
    Program terminated (job: RDDEXECL, no.: 12091300)
    The SM37 job log says that
    "Job started
    Step 001 started (program RDDEXECL, variant , user ID DDIC)
    All DB buffers of application server bdhp4488 were synchronized
    ABAP/4 processor: GETWA_NOT_ASSIGNED
    Job cancelled"
    When i see the dump in ST22. It says that it could not find entry in one of the tables
    "   READ TABLE p_t_mapping ASSIGNING <fs_map>
       WITH KEY target_stepid = 0
                targetsegid   = <fs_posit>-rulesegid
                targetposit   = <fs_posit>-ruleposit
                targetid      = 0.
    Sy-subrc <> 0 for this read.
    Could you please advise?
    Thanks and regards,
    Balaraj

  • Short dump (CALL_FUNCTION_FORMAT_NOT_SUP) when testing RFC connection

    Hello!
    I'm trying to test a RFC connection through SM59, but I'm getting the following short dump: CALL_FUNCTION_FORMAT_NOT_SUP (RFC data format not supported).
    This RFC will connect to Biztalk, and this dump started occurring when Biztalk changed their codepage from 1100 to 4102.
    On my SAP system the codepage is set to 1100.
    There is no option to set the system as Unicode or non-Unicode on SM59, since I don't have the "Special Options" tab (My release is 4.6C).
    How can I make this connection even with the different codepages?
    Thanks in advance!

    Hello Pedro
    This is the PI forum, which is for PI technical issues. This post is not related to PI.
    P.S. Please also familiarise yourself with the forum Rules of Engagement - https://wiki.sdn.sap.com/wiki/display/HOME/RulesofEngagement. Please do not Cross post.
    Regards
    Mark Smyth
    XI/PI Moderator

  • RSA1 - Datasources ASSERTION_FAILED short dump

    Hello,
    We are getting a short dump (ASSERTION_FAILED) when clicking on Datasources tab in RSA1 -> Modeling. This was working fine till yesterday afternoon. The last action I performed was to activate all transfer structures in My self source system using RS_TRANSU_ACTIVATE_ALL. I searched on service marketplace but couldn't find any note relevant to our error.
    Everything else works fine. Please advise.
    We are on BI SP14.
    This is the log from st22.
    Short text
        The ASSERT condition was violated.
    What happened?
        In the running application program, the ASSERT statement recognized a
        situation that should not have occurred.
        The runtime error was triggered for one of these reasons:
        - For the checkpoint group specified with the ASSERT statement, the
          activation mode is set to "abort".
        - Via a system variant, the activation mode is globally set to "abort
          for checkpoint groups in this system.
        - The activation mode is set to "abort" on program level.
        - The ASSERT statement is not assigned to any checkpoint group.
    Error analysis
        The following checkpoint group was used: "No checkpoint group specified"
        If in the ASSERT statement the addition FIELDS was used, you can find
        the content of the first 8 specified fields in the following overview:
        " (not used) "
        " (not used) "
        " (not used) "
        " (not used) "
        " (not used) "
        " (not used) "
        " (not used) "
        " (not used) "
    How to correct the error
        Probably the only way to eliminate the error is to correct the program.
        If the error occures in a non-modified SAP program, you may be able to
        find an interim solution in an SAP Note.
        If you have access to SAP Notes, carry out a search with the following
        keywords:
        "ASSERTION_FAILED" " "
        "CL_RSAWBN_TREE_VIEW===========CP" or "CL_RSAWBN_TREE_VIEW===========CM00K"
        "EXPAND_NODE"
    Best Regards
    RT
    null

    Hello Voodi,
    998730 talks about the short dump when changing/activating transformations.
    We got the short dump when trying to get into Datasources tab. Though we are on BI, as i mentioned earlier the last action i performed was to activate transfer structures (For 3.x statistical datasources).
    Still, I checked the table contents as mentioned in the note. It was not of much help. Any other thoughts?
    Thanks.
    Message was edited by:
            SAPBI IP

  • Short dump in r/3 in delta extraction

    Hi all,
    Today we got short dump in R/3 for delta extraction of data source
    2LIS_13_VDITM.We want these data to do month end analysis.
    I have tried to run extraction checker (rsa3) still it gives me short
    dump for the same.
    SAP r/3 4.6c
    and bw 3.5
    Regards,
    Viren.

    Hi,
    please paste some more info about the dump...
    Olivier.

  • Short dump in delta extract  using bgRFC in NW 2004s

    Short dump in delta extract after Support Pack install, using bgRFC. 
    InfoSet Query extractor from Z-table residing on BW system into ODS. 
    Init and Full loads load successfully, delta loads short dump.
    "MESSAGE_TYPE_X"        
    "SAPLARFC" or "LARFCU25"     
    "TRFC_SET_QUEUE_RECEIVER_LIST"
    Problem began after support pack install, from SP 9 to SP 12.   Switched to Classic RFC in SM59,  seemed to correct this extractor but caused problems in  other extractors.

    Hi Kevin,
    check out this note: https://websmp205.sap-ag.de/~form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=1054970&_NLANG=EN
    it might help.
    regards
    Siggi

  • Regarding Short dump while data extraction

    Hi All,
    We are trying to extract data from DB Connect. When we try to pull the data by giving selections, we are getting short dump.
    Name of Run time error.
    PERFORM_CONFLICT_TAB_TYPE
    Exception Name
    CX_SY_DYN_CALL_ILLEGAL_TYPE
    What could be the reason for this error.

    Hi Jayanth,
    Check these ...
    Perform_conflict_tab_type error
    Oracle to BW Load Runtime error CX_SY_DYN_CALL_ILLEGAL_TYPE
    Raja

Maybe you are looking for

  • Menu/Toolbar Display Corruption Upon Resizing Window

    We're experiencing an issue with one of our workstations where when the Adobe Reader X (10.1.3) window is resized, the Menu/Toolbar displays become corrupt and garbled on the screen (see the attached picture). The Toolbar appears on the top, the fram

  • Package view error

    Interesting product ... I've tried to load one of our larger and "troublesome" packages into the product. While the initial load worked, when I tried to choose "details" on the package body things started to hang. Same went for grants etc. When I fin

  • Viewing pdf files in safari 5.1.2

    I am using Lion ans Safari 5.1.2 Accessing a pdf file briefly flashes the Quicktime symbol then opens the first page of the pdf file. Other pages are not accessible or viewable.

  • Numeric and Non Numeric Data

    Hi, I have to check the data in Varchar2 field idtr and if it is numeric some actions are to be done on the data and if it is numeric some other different action is to be done. So I used some logic for finding whether the data is numeric or non numer

  • How to add descriptions to web app items?

    How do I add metta data (keywords and descriptions) to my web app items? Do I need to create them as additional custom fields?  Any help would be appreciated.